Advertisement
afterlife88

Untitled

Nov 19th, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.     $(".side-menu").addClass("js").before('<div class="menu"><a href="#" title="HOME">&#9776;</a></div>');
  3.     $(".menu").click(function(){
  4.         $(".side-menu").toggle();
  5.  
  6.     });
  7.     $(window).resize(function(){
  8.         if(window.innerWidth > 500) {
  9.             $(".side-menu").removeAttr("style");
  10.             $(".menu").hide();
  11.         }
  12.         if(window.innerWidth < 500) {
  13.  
  14.             $(".menu").show();
  15.         }
  16.         });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement