HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery mouseenter() Method</h1> <p>Try to touch me.</p> <button>Trigger mouseenter Event</button> <script> $(document).ready(function(){ $("p").mouseenter(function(){ alert("Paragraph is touched."); }); $("button").click(function(){ $("p").mouseenter(); }); }); </script> </body> </html>
OUTPUT
×

Save as Private