Guest User

Untitled

a guest
Jun 14th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // find:
  2. $(".faq .question:first").addClass("first");
  3. $(".faq .question:not(:first)").children(".answer").hide();
  4. $(".faq .question:first").addClass("active");
  5.  
  6. // replace with:
  7. $(".faq .question").children(".answer").hide();
Advertisement
Add Comment
Please, Sign In to add comment