Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.41 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.     $("button").click(function(){
  8.         $("p").hide(1000);
  9.     });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <button>Chowaj</button>
  16.  
  17. <p>Paragraf z niewielką zawartością</p>
  18. <p>A to inny paragraf z inną niewielką zawartością</p>
  19.  
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement