If you want to click a link with jQuery, you can use one of the following methods:
$('a').click();
$('a').trigger('click');
Which is better? (performance, browser support, i.e.)
|
If you want to click a link with jQuery, you can use one of the following methods:
|
|||
|
There seems to be none, performance wise. See: http://forum.jquery.com/topic/a-trigger-click-vs-a-click
Except you can extend the trigger command. Seems like i was mistaking. Since click is actually calling trigger, if no function is called. See: jQuery advantages/differences in .trigger() vs .click() And for performace results, @VisioN linked to this: http://jsperf.com/click-vs-trigger-click So, basicly using trigger is the fastest way, also i think it actually tells what you are doing, instead of just doing it. |
||||
|
|
|
http://forum.jquery.com/topic/a-trigger-click-vs-a-click
|
||||
|
|
|
Exactly the same. But I prefer $('a').bind('click', function(){}); |
|||||
|
clickto be captured by all the handlers attached to it – Nokia808Freak Oct 18 '12 at 10:00