Answers for "jquery event listener"

22

jquery click event

$('#selector').on('click',function(){
    //Your code here
});
Posted by: Guest on April-08-2020
6

jquery addeventlistener

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});
Posted by: Guest on May-24-2020
8

jquery event listener

// There are quite a few abstracted versions of the following
$('element').on('event', function() {
	// Do something
});

// Where 'event' is something such as 'click', 'hover' etc

// They are abstracted as seen below
$('element').click(function(){
	// Do something
});
$('element').hover(function(){
	// Do something
});

// etc...
Posted by: Guest on April-16-2020
1

jquery bind click

$( "#foo" ).bind( "click", function() {
  alert( "User clicked on 'foo.'" );
});
Posted by: Guest on April-27-2020
0

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>
Posted by: Guest on December-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language