TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p").mouseenter(function(){ $( this ).html("You entered the mouse pointer into my area."); }); }); </script> </head> <body> <p>A paragraph.</p> <p>Another paragraph.</p> </body> </html>