Advertisement
Guest User

Untitled

a guest
Sep 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.43 KB | None | 0 0
  1. $( "#menu_open" ).click(function() {
  2.   $( "#mobmenu" ).animate({
  3.     left: "+0",
  4.   }, 300, function() {
  5.    
  6.   });
  7. });
  8.  
  9. $( "#mobmenuclose" ).click(function() {
  10.   $( "#mobmenu" ).animate({
  11.     left: "-130%",
  12.   }, 300, function() {
  13.    
  14.   });
  15. });
  16.  
  17.  
  18. $( ".subm_plus" ).click(function() {
  19.     $(this).toggleClass('open');
  20.     $(this).siblings('.submenu').slideToggle();
  21.     $(this).children('i').toggleClass("rotate");
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement