Advertisement
Guest User

Untitled

a guest
Oct 4th, 2013
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Toggle --------------------------->
  2. $(".toggle_container").hide();
  3. $("h3.trigger").click(function(){
  4. $(this).toggleClass("active").next().slideToggle("normal");
  5. return false; //Prevent the browser jump to the link anchor
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement