Guest User

Untitled

a guest
May 26th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. $(function(){
  2.  
  3. //Close all FAQs
  4. $('.faq_content').hide()
  5.  
  6. //Don't show the first now
  7. //$('.faq_content:first').show().addClass("current_faq")
  8. $('.faq_content:first').addClass("current_faq")
  9.  
  10. $('.btn_close').click(function(){
  11. $(".current_faq").slideUp("slow")
  12. return false;
  13. })
  14.  
  15. //Trigger
  16. $('.faq h3 a').click(function(){
  17.  
  18. id = $(this).parent().next()
  19.  
  20. $('.current_faq').slideUp("slow", function(){
  21. $(this).removeClass("current_faq")
  22. id.slideDown().addClass("current_faq")
  23. })
  24.  
  25. return false;
  26.  
  27. })
  28.  
  29. })
Add Comment
Please, Sign In to add comment