Is the shiftkey held down in JavaScript
You can check if shift key is pressed using :
if(evt.shiftKey) {
... //returns true if shift key is pressed
You can check if shift key is pressed using :
if(evt.shiftKey) {
... //returns true if shift key is pressed