click even jquery code example
Example 1: jquery click event
$('#selector').on('click',function(){
//Your code here
});
Example 2: jquery click event
$( "#other" ).click(function() {
$( "#target" ).click();
});
$('#selector').on('click',function(){
//Your code here
});
$( "#other" ).click(function() {
$( "#target" ).click();
});