In jQuery, how can I tell between a programmatic and user click?

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/

Leave a Comment