Guess there is two click event X and Y.
$('X').on('click',function(){
//some function here
});
and
$('Y').on('click',function(){
//this will run the X event
});
Here,At the same time I don't have access of trigger X . So I need to run that function/event by clicking Y trigger.
Is it possible somehow?