<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").on("click dblclick mouseover mouseout",function(event){
$("div").html("Event: " + event.type);
});
});
</script>
</head>
<body>
<p>This paragraph has a click, double-click, mouseover and mouseout event defined.<br>If you trigger one of the events, the div element below will display the event type.</p>
<div />
</body>
<!-- Mirrored from www.w3schools.com/jquery/tryit.asp?filename=tryjquery_event_type by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:06:19 GMT -->
</html>