on click jquey code example
Example 1: on click jquery
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
Example 2: on click jquery
$( "#target" ).click(function() {
alert( "Handler for .click() called." );
});