Skip to content

Instantly share code, notes, and snippets.

@DevShahidul
Created July 8, 2017 05:45
Show Gist options
  • Select an option

  • Save DevShahidul/84504606f309f81bc8409b6bc015e681 to your computer and use it in GitHub Desktop.

Select an option

Save DevShahidul/84504606f309f81bc8409b6bc015e681 to your computer and use it in GitHub Desktop.
$('div.question .answer').hide()
$('.accordion div.question > h6').click(function(){
$('.accordion div.question').removeClass('active')
$(this).parent().addClass('active')
$('div.question').find('.answer:visible').slideUp()
if( $(this).parent().find('.answer:visible').length){
$('.accordion div.question > .answer').slideUp()
$('.accordion div.question').removeClass('active')
}
else{
$(this).parent().find('.answer').slideDown()
$(this).parent().addClass('active')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment