Guest User

Untitled

a guest
Oct 18th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('.mobile-nav-btn').click(function(e){
  3. $('.mobile-nav').toggle();
  4. // this prevents the browser from doing the default link action
  5. e.preventDefault();
  6. });
  7. });
Add Comment
Please, Sign In to add comment