Skip to content

Instantly share code, notes, and snippets.

@pankajpatel
Last active August 29, 2015 14:20
Show Gist options
  • Save pankajpatel/5a90d94d556f4e4004a1 to your computer and use it in GitHub Desktop.
Save pankajpatel/5a90d94d556f4e4004a1 to your computer and use it in GitHub Desktop.
jquery custom accordion
$(document).ready(function(e){
$('.item').click(function (e){
if($(this).next('.item-data').css('display') != 'block'){
$(this).next('.item-data').addClass('active').slideDown('slow');
} else {
$(this).slideUp('fast').removeClass('active');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment