Skip to content

Instantly share code, notes, and snippets.

@abriening
Created January 10, 2013 03:20
Show Gist options
  • Save abriening/4499150 to your computer and use it in GitHub Desktop.
Save abriening/4499150 to your computer and use it in GitHub Desktop.
jQuery(function($){
$('.toggle.hidden').hide();
$(document).on('click','.toggle_button', function(){
$(this).parent().find('.toggle').fadeToggle();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment