Skip to content

Instantly share code, notes, and snippets.

@media317
Created March 8, 2017 03:47
Show Gist options
  • Save media317/bb08ce10899683fa8924cf1943944da5 to your computer and use it in GitHub Desktop.
Save media317/bb08ce10899683fa8924cf1943944da5 to your computer and use it in GitHub Desktop.
FAQ Toggle javascript of question and answer
jQuery(function( $ ){
$('.faq-list .question').click( function(){
$(this).parent().find('.answer').slideToggle('fast');
$(this).toggleClass('on');
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment