jquery .on event code example
Example 1: jquery click event
$('#selector').on('click',function(){
});
Example 2: jquery event listener
$('element').on('event', function() {
});
$('element').click(function(){
});
$('element').hover(function(){
});
Example 3: on click jquery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});
Example 4: jquery $(document.on click
$(document).on("click","#test-element",function() {});
Example 5: jquery click event
$( "#other" ).click(function() {
$( "#target" ).click();
});
Example 6: jQuery Event Methods
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>
</head>
<body>
<p>If you click on me, I will disappear.</p>
<p>Click me away!</p>
<p>Click me too!</p>
</body>
</html>