How do I detect a keyboard modifier in a bookmarklet? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:51:09Z http://stackoverflow.com/feeds/question/141198 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141198/how-do-i-detect-a-keyboard-modifier-in-a-bookmarklet 0 How do I detect a keyboard modifier in a bookmarklet? rentzsch 2008-09-26T18:42:44Z 2008-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#141225 6 Answer by John Resig for How do I detect a keyboard modifier in a bookmarklet? John Resig 2008-09-26T18:48:47Z 2008-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#141459 0 Answer by howardr for How do I detect a keyboard modifier in a bookmarklet? howardr 2008-09-26T19:35:02Z 2008-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>