Skip to content

Instantly share code, notes, and snippets.

@joecritch
Created August 1, 2011 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joecritch/1117962 to your computer and use it in GitHub Desktop.
Save joecritch/1117962 to your computer and use it in GitHub Desktop.
$('.toggler').bind('change', function() {
var showIt = !$(this).is(':checked');
var panel = $(this).closest('.field').nextAll('.hide');
panel.changeVisibility(showIt)
.closest('fieldset').changeClass('featured', showIt);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment