Advertisement
Guest User

ben 10

a guest
Nov 20th, 2019
2,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!Doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <script type="text/javascript" src="jquery.min.js"></script>
  7. <script type="text/javascript">
  8.  
  9. $(document).ready(function(){
  10. $("#a").click(function(){
  11. $("p").hide();
  12. });
  13. $("#b").click(function(){
  14. $("p").show();
  15. });
  16. });
  17. </script>
  18. </head>
  19. <body>
  20. <p>Ako kliknes na gumb "Sakri me" ja cu se sakriti.</p>
  21. <button id="a">Sakrij me</button>
  22. <button id="b">Otkrij me</button>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement