onclick function call in jquery code example
Example 1: jquery onclick function
$( "#other" ).click(function() {
$( "#target" ).click();
});
Example 2: jquery .click function call
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);
});
Example 3: onclick Event jquery
// Html
<input type="text" onchange="MyFuction(this)" />
// Js
function MyFunction(item) {
var input = $(item);
console.log(input);
}