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

I don't seem to be able to capture two events at the same time. I am trying to capture the Shift and Click (mouse click) event.

I have no problem capturing each action separately but not the two together.

Has anybody done some research on that particular problem?

share|improve this question

5 Answers

Yes:

$(document).click(function(e) {
    if (e.shiftKey) {
        alert("shift+click")
    } 
});
share|improve this answer

You can check the event.shiftKey boolean property.

$(selector).click(function(event) {
    if (event.shiftKey) {
        //....
    } 
});
share|improve this answer
This is the same answer as above. They were answered at almost exactly the same time. – DRaehal May 21 '12 at 21:08

Worth note:

to detect Ctrl or "Meta" (Cmd key on OS X)

$(document).click(function(e)
    {
        if (e.ctrlKey)
        {
            alert("ctrl+click");
        }
    });

$(document).click(function(e)
    {
        if (e.metaKey)
        {
            alert("CMD+click");
        }
    });
share|improve this answer

If I understand your question correctly, you can use the shiftKey property of the event object that you receive in your click handler to check whether the shift key was down when the user clicked.

EDIT: shiftKey, not shift

share|improve this answer

Please follow this link, it has done something very good. Even you can capture Crtl+Shift at the same time which I was looking for it:
http://www.openjs.com/scripts/events/keyboard_shortcuts/

share|improve this answer

Your Answer

 
discard

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