javascript - event different in "click with mouse" and "trigger" -


i have bind event like:

$(document).on('click', selector, proxy); 

what difference between "click mouse" , "do trigger xxx.trigger('click');" principle in calling callback function?

both same, click() shorthand of trigger('click').

more info here.

i found info too, in stackoverflow.


Comments

Popular posts from this blog

arrays - PHP Shopping Cart Variable and Object errors -

javascript - jQuery "chosen": conflict with 'selected' attribute in option tag -