In terms of performance, what are the gains (or just differences) between:
$('.myEl').click();
and
$('.myEl').trigger('click');
Are there any at all?
|
In terms of performance, what are the gains (or just differences) between:
and
Are there any at all? |
|||
|
|
|
This is the code for the
as you can see; if no arguments is parsed to the function it will trigger the click event. So use And as @Sandeep points out As of 1.9.0 the check for
|
|||||
|
|
for performance kind .check here.. http://jsperf.com/trigger-vs-not-trigger Both are almost same...click() is shorthand of trigger('click'). |
|||
|
|
|
Check http://api.jquery.com/click/ :
It seems they are the same. |
|||
|
|
|
i think that
is better because it saves you a function call as
|
|||
|
|