Advertisement
gabs_avila

Untitled

Feb 26th, 2020
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. !DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
  6.  
  7.  
  8. </head>
  9. <body>
  10.  
  11.  
  12. <p id="hide">thank you</p>
  13.  
  14. <button id="in">in</button>
  15.  
  16.  
  17. <script type="text/javascript">
  18.  
  19. var show = true;
  20.  
  21. $("#in").click(function() {
  22. if (show) {
  23. $("#hide").fadeOut(function(){
  24. show = false;
  25. });
  26. }else{
  27. $("#hide").fadeIn(function(){
  28. show = true;
  29. });
  30. }
  31. });
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement