jquery click function

JavaScript
$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});$('#selector').on('click',function(){
    //Your code here
});                  $( "#dataTable tbody tr" ).on( "click", function() {
  console.log( $( this ).text() );
});
$( "#other" ).click(function() {
  $( "#target" ).click();
});
function example() {

}
function exampleParams(string, number, bool) {
  
}
//to call a function onclick without passing arguments 
$(selector).click(example);
//to call a function onclick and pass arguments
$(selector).click(function() {
  exampleParams("string example",  3, true);
});
//Click for event to trigger

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

Also in JavaScript: