sunny
0
Q:

jquery .click function call

$( "#target" ).click(function() {
  alert( "Handler for .click() called." );
});
23
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);
});
1
$(selector).click();
2

New to Communities?

Join the community