Guest User

Untitled

a guest
Jun 19th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $("#faq h2").click(function(){
  2. $(this).next("p").slideToggle("slow")
  3. .siblings("p:visible").slideUp("slow");
  4. $(this).toggleClass("active");
  5. $(this).siblings("h2").removeClass("active");
  6. });
Add Comment
Please, Sign In to add comment