Advertisement
Guest User

Untitled

a guest
Dec 29th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("#p1").mouseenter(function(){
  8. alert("You entered p1!");
  9. });
  10. });
  11. </script>
  12. </head>
  13. <body>
  14.  
  15. <p id="p1">Enter this paragraph.</p>
  16.  
  17. </body>
  18. </html>
  19.  
  20. $("#p1").mouseenter(function(){
  21. alert("You entered p1!");
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement