Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 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.     $("#p1").mouseenter(function(){
  8.         alert("Najechałeś myszką nad element p o id=&quot;p1&quot;!");
  9.     });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <p id="p1">Najedź myszką na mnie!</p>
  16.  
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement