Guest User

Untitled

a guest
Dec 11th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. $(".s-header-menu2 li a").click(function() {
  2. if($(this).next("div").is(":visible")){
  3. $(this).next("div").slideUp("slow");
  4. $(this).removeClass('active');
  5.  
  6. } else {
  7. $(".s-header-block").slideUp("slow");
  8. $(this).next("div").slideToggle("slow");
  9.  
  10. $(this).addClass('active');
  11.  
  12.  
  13. }
  14. return false;
  15. });
Add Comment
Please, Sign In to add comment