Capture a Shift and Click event with jQuery April 10, 2023 by Tarik Yes: $(document).click(function(e) { if (e.shiftKey) { alert("shift+click") } });