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 mouseout() Method</h1> <p>Try to touch me and go away.</p> <script> $(document).ready(function(){ $("p").mouseout(function(e){ alert("You are go away from paragraph."); }); }); </script> </body> </html>
OUTPUT
×

Save as Private