/on in jquery

JavaScript
$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
$(document).on("click","#test-element",function() {});$( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});

Source

Also in JavaScript: