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

c - ALSA programming: how to stop immediately -

c++ - How to add Crypto++ library to Qt project -