Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function(){
- $(".svommere h3:first").addClass("active");
- $(".svommere p:not(:first)").hide();
- $(".svommere h3").click(function(){
- $(this).next("p").slideToggle("slow")
- .siblings("p:visible").slideUp("slow");
- $(this).toggleClass("active");
- $(this).siblings("h3").removeClass("active");
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment