Say I have a click handler defined:
$("#foo").click(function(e){ });
How can I, within the function handler, tell whether the event was fired programmatically, or by the user?
on() differs from . click() in that it has the ability to create delegated event handlers by passing a selector parameter, whereas . click() does not. When .
jQuery click() MethodThe click event occurs when an element is clicked. The click() method triggers the click event, or attaches a function to run when a click event occurs.
Trigger Click Event in JavaScript Using click() An element receives the click event when pressed, and a key is released on the pointing device (eg, the left mouse button) while the pointer is within the element. click() is triggered after the down and up mouse events are triggered in that order.
You could have a look at the event object e
. If the event was triggered by a real click, you'll have things like clientX
, clientY
, pageX
, pageY
, etc. inside e
and they will be numbers; these numbers are related to the mouse position when the click is triggered but they will probably be present even if the click was initiated through the keyboard. If the event was triggered by $x.click()
then you won't have the usual position values in e
. You could also look at the originalEvent
property, that shouldn't be there if the event came from $x.click()
.
Maybe something like this:
$("#foo").click(function(e){ if(e.hasOwnProperty('originalEvent')) // Probably a real click. else // Probably a fake click. });
And here's a little sandbox to play with: http://jsfiddle.net/UtzND/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With