Advertisement
Guest User

Untitled

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