Guest User

Untitled

a guest
Jun 19th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $(document).ready(function(){
  2.  
  3. /*
  4. ** Toggle's body class
  5. ** change the CSS accordingly: body.menu-visible for a visible menu - body.menu-hidden for a hidden menu
  6. */
  7. function toggleMenu() {
  8.  
  9. // Change the body class
  10. $('body').toggleClass('menu-visible menu-hidden');
  11.  
  12. }
  13.  
  14. // Bind click event to the hamburger button
  15. $('body').on('click', '.toggle-menu', toggleMenu);
  16.  
  17. });
Add Comment
Please, Sign In to add comment