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 event.type Property</h1> <p>click dblclick mouseover on this paragraph</p> <p>Event Occured is <strong></strong></p> <script> $(document).ready(function(){ $("p").on("click dblclick mouseover", function(event){ $("strong").text(event.type); }); }); </script> </body> </html>
OUTPUT
×

Save as Private