jquery do something on click code example
Example 1: on click jquery
$( "#dataTable tbody tr" ).on( "click", function() {
console.log( $( this ).text() );
});
Example 2: css click event jquery
$('h1').click(function () {
$(this).css('color', 'blue')
});