Advertisement
gabs_avila

Untitled

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