Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
6  
Answer to your question is yes. – Kaf Nov 28 '12 at 9:52
1  
almost duplicated: stackoverflow.com/q/2445613/670377 – Tom Sarduy Nov 28 '12 at 9:56
Yes but I want to achieve this not using JQuery – fox Nov 28 '12 at 10:01
You forgot to ask your implicit question "How to do this?" ;) – SergeanT Nov 28 '12 at 10:22
-1 You should have included on your question "using plain javascript" – Tom Sarduy Nov 28 '12 at 10:22

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.

6 Answers

up vote 2 down vote accepted

Here is a pure JS implementation:

myElement = document.getElementById('mydiv');

function keyaction(e){
    myElement.innerHTML+= String.fromCharCode(e.charCode);
}

myElement.addEventListener("mouseover",function() {
    document.addEventListener("keypress", keyaction);
});

myElement.addEventListener("mouseout",function() {
    document.removeEventListener("keypress", keyaction, false);
});

Here is a demonstration: http://jsfiddle.net/bAV6f/1/

Type into the div when it is hovered.

share|improve this answer
Um, I don't think this is what the OP wanted. – Abody97 Nov 28 '12 at 10:03
The OP says: a key on a keyboard was pressed -- I believe you missed that part. – Abody97 Nov 28 '12 at 10:05
@Abody97 No, that's what the keydown listener does. – Asad Nov 28 '12 at 10:08
Oh oh oh, sorry, I misread your code :) Although binding and unbinding each time is kinda expensive, this should work. Sorry again. – Abody97 Nov 28 '12 at 10:09
@Abody97 This works perfectly fine, see the demo here – Asad Nov 28 '12 at 10:09
show 1 more comment

Here's a plain JavaScript solution:

var yourDiv = document.getElementById("yourdiv"); //cache your div
var keyPressed = 0; //kinda-boolean flag, if it's not 0 then at least one key is pressed
document.onkeydown = function() { //when a key is "down"
    keyPressed ++; //increment the counter of "down" keys
};
document.onkeyup = function() { //when a key is "released"
    keyPressed --; //decrement the counter of "down" keys
    keyPressed = Math.max(0, keyPressed); //make sure it doesn't go negative
};
yourDiv.onmouseover = function() { //when you hover your div
    if(keyPressed !== 0) { //if a key is pressed
        //do stuff
    }
};

The above only fires the mouse events when the mouse enters your div. If you want it to fire if it moves inside it, use the onmousemove event instead:

yourDiv.onmousemove = function() { //when the mouse moves inside your div
    if(keyPressed !== 0) { //if a key is pressed
        //do stuff
    }
};

Note that you can use addEventListener instead of directly setting onkeydown, onkeyup and onmousemover -- but the concept stays the same.

share|improve this answer
+1 for not using a library :) – Damien Overeem Nov 28 '12 at 10:04
This doesn't register events that occur while the mouse is hovered over the div. The question is is it possible to check if a key on a keyboard was pressed when hovering a certain element, not is it possible to check if the element was moused over while a key on the keyboard was pressed – Asad Nov 28 '12 at 10:18
@Asad Updated the answer. Thanks for pointing that out! – Abody97 Nov 28 '12 at 10:24
@Abody97 That is still incorrect. The event isn't supposed to be triggered by mouse movement. It is supposed to be triggered by a keypress provided that the mouse is inside the element ("hovering the element", to quote the OP). – Asad Nov 28 '12 at 10:29

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.

share|improve this 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).

share|improve this answer
I'm trying to achieve this in plain javascript or dojo. Is there a way – fox Nov 28 '12 at 9:59
Yes this is possible in plain javascript, although it is different for several browsers. Read ie. seanmonstar.com/post/706917892/…. I don't know dojo, but i can assure you that it also has an addevent option somewhere. – Damien Overeem Nov 28 '12 at 10:02
Actually. Here is a manual for dojo dojotoolkit.org/documentation/tutorials/1.6/events – Damien Overeem Nov 28 '12 at 10:04

Short anwser

Yes, is possible

but, how can be done if it is possible?

Well, using Jquery is pretty simple:

$("div#selector").mouseover(function(e) {
  if (e.ctrlKey)
    alert('You are hover selector and pressing ctrl');
  if (e.altKey)
    alert('You are hover selector and pressing alt');
  if (evt.which == 77)
    alert('You are hover selector and pressing m');
  ...
});

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

share|improve this answer

You can use the jquery for this purpose

$("p").hover(function(){
//Your code
}); 

Or

$(".selector").on({
mouseenter: function () {
//stuff to do on mouseover
}, 
mouseleave: function () {
//stuff to do on mouseleave

}

});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.