Is it possible to check if a key on a keyboard was pressed when hovering a certain element (div) without using jQuery or a similar library?
|
|
|||||||||||||||
|
closed as not a real question by Kyle Sevenoaks, DaveRandom, Leigh, tereško, thirtydot Nov 28 '12 at 10:20
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Here is a pure JS implementation:
Here is a demonstration: http://jsfiddle.net/bAV6f/1/ Type into the |
|||||||||||
|
|
Here's a plain JavaScript solution:
The above only fires the mouse events when the mouse enters your
Note that you can use |
|||||||||
|
|
Try Shift + mouseover with jQuery shift should be changeable with whatever key you want I believe. And you want to try out the second option presented in the accepted answer. |
|||
|
|
|
Your answer is yes, this is possible. You would have to add a javascript event on hover (onmouseover) over the div that sets a keydown event on the same div. You will have to remove the keydown event when the user stops the hover again (onmouseout). |
|||||||
|
Short anwserYes, is possible but, how can be done if it is possible?Well, using Jquery is pretty simple:
See this list of key to know the javascript keycode associated with a character Edit: I just readed your comment about not to use jQuery which should be included in the question |
||||
|
|
|
You can use the jquery for this purpose
Or
|
|||
|
|