Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(document).ready(function( $ ) {
  2.  
  3. $(".help-side-nav").addClass("hide-mobile").before('<div id="left-nav-mobile">&#9776;</div>');
  4.     $("#left-nav-mobile").click(function(){
  5.         $(".help-side-nav").toggle();
  6.     });
  7.     $(window).resize(function(){
  8.         if(window.innerWidth > 768) {
  9.             $(".help-side-nav").removeAttr("style");
  10.         }
  11.     });
  12.  
  13.   });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement