Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $(document).ready(function()
  2. {
  3.  
  4. var check = 0;
  5.  
  6. $("#Menu").click(function ()
  7. {
  8. if(check == 0)
  9. {
  10. $("#snuggle").hide("show", { direction: "down" }, 1000)
  11. check = 1;
  12. }
  13. else
  14. {
  15. $("#snuggle").hide("slide", { direction: "up" }, 1000)
  16. check = 0;
  17. }
  18. }
  19. );
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement