Capture a Shift and Click event with jQuery

Yes:

$(document).click(function(e) {
    if (e.shiftKey) {
        alert("shift+click")
    } 
});

You can check the event.shiftKey boolean property.

$(selector).click(function(event) {
    if (event.shiftKey) {
        //....
    } 
});