Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.38 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.     $("p").dblclick(function(){
  8.         $(this).hide();
  9.     });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <p>Zniknę po podwójnym kliknięciu!</p>
  16. <p>Klikaj - podwójnie!</p>
  17. <p>Kliknij mnie też!</p>
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement