Side navigation
#3614 closed bug (invalid)
Opened November 15, 2008 11:04AM UTC
Closed April 22, 2009 04:26AM UTC
Last modified February 19, 2010 09:02AM UTC
Keydown event on "window" (Internet Explorer 6)
Reported by: | rickgbw | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | docs | Version: | 1.2.6 |
Keywords: | Cc: | rickgbw, flesler | |
Blocked by: | Blocking: |
Description
The keydown even on window element is not working on my IE6.
Here is a simple example that Im try (works on other browsers):$(window).keydown(function (e) { alert('Key Down!'); });
Attachments (0)
Change History (3)
Changed November 15, 2008 02:55PM UTC by comment:1
cc: | → rickgbw, flesler |
---|---|
component: | unfilled → event |
owner: | flesler → brandon |
Changed November 24, 2008 06:07PM UTC by comment:2
The example in the docs is using window and it is not working in IE (tested with IE7).
Changed April 22, 2009 04:26AM UTC by comment:3
component: | event → docs |
---|---|
resolution: | → invalid |
status: | new → closed |
The keydown event is not supported on the window element. Use document instead. http://www.w3schools.com/jsref/jsref_onkeydown.asp
What about using the document ?