I have an anchor tag that calls a JavaScript function.
With or without JQuery how do I determine if the shift key is down while the link is clicked?
The foll
$(document).on('keyup keydown', function(e){shifted = e.shiftKey} );