Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 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.         $(".test").hide();
  9.     });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <h2 class="test">Nagłówek o klasie test</h2>
  16.  
  17. <p class="test">Paragraf o klasie test.</p>
  18. <p>Inny paragraf.</p>
  19.  
  20. <button>Kliknij!</button>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement