DaemonHK

Untitled

Feb 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var j=0;
  2.     $("a.menu-more").unbind("click").on("click",function(){
  3.         if(j===0){
  4.             $("body").addClass("no-scroll");
  5.             $("div.up-menu").addClass("open");
  6.             j=1;
  7.         }else{
  8.             $("div.up-menu").removeClass("open");
  9.             $("body").removeClass("no-scroll");
  10.             j=0;
  11.         }
  12.         return false;
  13.     });
Advertisement
Add Comment
Please, Sign In to add comment