on() jquery code example

Example 1: 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...

Example 2: on click jquery

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});

Example 3: jquery $(document.on click

$(document).on("click","#test-element",function() {});

Example 4: /on in jquery

$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});