How do I detect a keyboard modifier in a bookmarklet? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:51:09Zhttp://stackoverflow.com/feeds/question/141198http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/141198/how-do-i-detect-a-keyboard-modifier-in-a-bookmarklet0How do I detect a keyboard modifier in a bookmarklet?rentzsch2008-09-26T18:42:44Z2008-09-26T19:35:02Z
<p>Is there a way to detect if the user is holding down the shift key (or other modifier keys) when executing a javascript bookmarklet?</p>
<p>In my tests of Safari 3.1 and Firefox 3, <code>window.event</code> is always undefined.</p>
http://stackoverflow.com/questions/141198/how-do-i-detect-a-keyboard-modifier-in-a-bookmarklet/141225#1412256Answer by John Resig for How do I detect a keyboard modifier in a bookmarklet?John Resig2008-09-26T18:48:47Z2008-09-26T18:48:47Z<p>If you're looking for a way to detect the mouse position while the bookmarklet is being physically clicked, no, there is no way. Since the bookmarklet is positioned outside of any page (this area is generally called the browser "chrome" - which is confusing since there's now a browser with that name) it's not possible to detect JavaScript-related events there.</p>
<p>That being said, if you created this as a Firefox extension then you would have access to event information, JavaScript, and keyboard modifiers. But that doesn't appear to be what you're looking for.</p>
http://stackoverflow.com/questions/141198/how-do-i-detect-a-keyboard-modifier-in-a-bookmarklet/141459#1414590Answer by howardr for How do I detect a keyboard modifier in a bookmarklet?howardr2008-09-26T19:35:02Z2008-09-26T19:35:02Z<p>window.event is an IE only. Event objects are passed to an event listener as an argument in firefox and safari. So you can tell in IE, but not in any other popular browser.</p>