Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to detect if a click() is a mouse click or triggered by some code?

share|improve this question

3 Answers

up vote 10 down vote accepted

Use the which property of the event object. It should be undefined for code-triggered events:

$("#someElem").click(function(e) {
    if(e.which) {
        //Actually clicked
    }
    else {
        //Triggered by code
    }
});

Here's a working example of the above.

Update based on comments

Pressing the Enter key when an input element has focus can trigger the click event. If you want to distinguish between code-triggered clicks and all other clicks (mouse or keyboard triggered) then the above method should work fine.

share|improve this answer
2  
How can an element be clicked by the keyboard? – James Allardice Oct 3 '11 at 13:02
1  
You've never pressed enter to log in? – awm Oct 3 '11 at 13:04
1  
Are you sure? If a button or checkbox has focus, the "enter" key will cause a click, as far as I know. – Pointy Oct 3 '11 at 13:08
1  
@James Allardice, click events can be triggered by various different devices to support user accessibility. If you tab through a page, you can use the enter key to trigger a click event on links and form controls. It is unfortunate how many developers never take the time to consider users with disabilities or who may be using screen readers to browse the internet. – zzzzBov Oct 3 '11 at 13:11
1  
@ŠimeVidas - No, my source was just what I've used in the past. No idea where it came from originally! I'm very tempted to delete this answer. The answer by Nicola seems to be suitable. Although api.jquery.com/category/events/event-object states that all event objects will have a which property. – James Allardice Oct 3 '11 at 13:33
show 11 more comments

You should check e.originalEvent:

$("#someElem").click(function(e) {
    if(e.originalEvent === undefined) {
        //triggered 
    }
    else {
        //clicked by user
    }
});
share|improve this answer
Live demo: jsfiddle.net/frw8j/3 – Šime Vidas Oct 3 '11 at 13:44

Wait for some time and use event.isTrusted - its supported by IE9, Opera 12, and Firefox Nightly. Webkit will support it too, most probably.

Currently, there is no guaranteed way to know.

share|improve this answer
1  
I don't agree: e.originalEvent does the trick – Nicola Peluchetti Oct 3 '11 at 13:26
don't want to break your pink glasses, but jQuery is not a magic wand ... – c69 Oct 3 '11 at 14:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.