Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7.     $("#hide").click(function(){
  8.         $("p").hide();
  9.     });
  10.     $("#show").click(function(){
  11.         $("p").show();
  12.     });
  13. });
  14. </script>
  15. </head>
  16. <body>
  17.  
  18. <p>Jeśli klikniesz Zniknij - Zniknę!</p>
  19.  
  20. <button id="hide">Zniknij</button>
  21. <button id="show">Pokaż</button>
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement