vote up 4 vote down star
1

Is there a way to detect if a mouse button is currently down in JavaScript?

I know about the "mousedown" event, but that's not what I need. Some time AFTER the mouse button is pressed, I want to be able to detect if it is still pressed down.

Is this possible?

flag

7 Answers

vote up 8 vote down check

Regarding Pax' solution: it doesn't work if user clicks more than one button intentionally or accidentally. Don't ask me how I know :-(.

The correct code should be like that:

var mouseDown = 0;
document.body.onmousedown = function() { 
  ++mouseDown;
}
document.body.onmouseup = function() {
  --mouseDown;
}

With the test like this:

if(mouseDown){
  // crikey! isn't she a beauty?
}

If you want to know what button is pressed, be prepared to make mouseDown an array of counters and count them separately for separate buttons:

// let's pretend that a mouse doesn't have more than 9 buttons
var mouseDown = [0, 0, 0, 0, 0, 0, 0, 0, 0],
    mouseDownCount = 0;
document.body.onmousedown = function(evt) { 
  ++mouseDown[evt.button];
  ++mouseDownCount;
}
document.body.onmouseup = function(evt) {
  --mouseDown[evt.button];
  --mouseDownCount;
}

Now you can check what buttons were pressed exactly:

if(mouseDownCount){
  // alright, let's lift the little bugger up!
  for(var i = 0; i < mouseDown.length; ++i){
    if(mouseDown[i]){
      // we found it right there!
    }
  }
}

Now be warned that the code above would work only for standard-compliant browsers that pass you a button number starting from 0 and up. IE uses a bit mask of currently pressed buttons:

  • 0 for "nothing is pressed"
  • 1 for left
  • 2 for right
  • 4 for middle
  • and any combination of above, e.g., 5 for left + middle

So adjust your code accordingly! I leave it as an exercise.

And remember: IE uses a global event object called … "event".

Incidentally IE has a feature useful in your case: when other browsers send "button" only for mouse button events (onclick, onmousedown, and onmouseup), IE sends it with onmousemove too. So you can start listening for onmousemove when you need to know the button state, and check for evt.button as soon as you got it — now you know what mouse buttons were pressed:

// for IE only!
document.body.onmousemove = function(){
  if(event.button){
    // aha! we caught a feisty little sheila!
  }
};

Of course you get nothing if she plays dead and not moving.

Relevant links:

PS: R.I.P. Steve Irwin.

Update #1: I don't know why I carried over the document.body-style of code. It will be better to attach event handlers directly to the document.

link|flag
Great post, thanks! The last bit about catching the button onmousemove is perfect, since I only need this info to resolve a problem that happens in IE only (certain scriptaculous callbacks fire while dragging, when they should only fire when dragging stops, and I needed a way to stop them) – TM Nov 27 '08 at 3:06
After testing, it appears that evt.button does in fact not exist onmousemove with IE7... – TM Nov 27 '08 at 3:53
It always pays to qualify your question as precisely as possible. I just added the last bit as the fun fact. Now I am glad I did it because it turned out to be useful for you. – Eugene Lazutkin Nov 27 '08 at 3:55
Hmm, the documentation says it is supported from IE4 to IE8. – Eugene Lazutkin Nov 27 '08 at 3:56
My bad, it is a copy-n-paste error. Let me correct my code. – Eugene Lazutkin Nov 27 '08 at 4:00
show 1 more comment
vote up 0 vote down

This is a stupid limitation of Javascript. Why is it that unlike Java the brilliant geniuses at W3C can't shoot straight and give us an API that doesn't force us to keep reinventing the wheel?

link|flag
vote up 0 vote down

You need to handle the MouseDown and MouseUp and set some flag or something to track it "later down the road"... :(

link|flag
vote up 0 vote down

You can combine @Pax and my answers to also get the duration that the mouse has been down for:

var mousedownTimeout,
    mousedown = 0;

document.body.onmousedown = function() {
  mousedown = 0; 
  window.clearInterval(mousedownTimeout);
  mousedownTimeout = window.setInterval(function() { mousedown += 200 }, 200);
}

document.body.onmouseup = function() {
  mousedown = 0;
  window.clearInterval(mousedownTimeout);
}

Then later:

if (mousedown >= 2000) {
  // do something if the mousebutton has been down for at least 2 seconds
}
link|flag
That's not a bad idea, Jake. Do you need to clearInterval() in onmouseup() before setting mousedown to 0? I'm wary of the timer function firing between setting it to 0 and stopping the timer, leaving the timeout at 200? Similarly in onmousedown. – paxdiablo Nov 27 '08 at 1:06
The order of the clearIntervals isn't going to make a difference as the current thread of execution will finish before any events (including timers) fire. – Nathaniel Reinhart Nov 27 '08 at 1:09
vote up 3 vote down

I think the best approach to this is to keep your own record of the mouse button state, as follows:

var mouseDown = 0;
document.body.onmousedown = function() { 
    mouseDown = 1;
}
document.body.onmouseup = function() {
    mouseDown = 0;
}

and then, later in your code:

if (mouseDown == 1) {
    // the mouse is down, do what you have to do.
}
link|flag
+1, and thanks. I thought I might have to resort to this, but I was hoping there was some feature that let you simply check the state directly. – TM Nov 27 '08 at 2:23
vote up 2 vote down

The following snippet will attempt to execute the "doStuff" function 2 seconds after the mouseDown event occurs in document.body. If the user lifts up the button, the mouseUp event will occur and cancel the delayed execution.

I'd advise using some method for cross-browser event attachment - setting the mousedown and mouseup properties explicitly was done to simplify the example.

function doStuff() {
  // does something when mouse is down in body for longer than 2 seconds
}

var mousedownTimeout;

document.body.onmousedown = function() { 
  mousedownTimeout = window.setTimeout(doStuff, 2000);
}

document.body.onmouseup = function() {
  window.clearTimeout(mousedownTimeout);
}
link|flag
Thanks, but this isn't quite the behavior I was looking for (although I can see how my question indicates that this is what I am trying to do). – TM Nov 27 '08 at 2:23
vote up 2 vote down

Well, you can't check if it's down after the event, but you can check if it's Up... If it's up.. it means that no longer is down :P lol

So the user presses the button down (onMouseDown event) ... and after that, you check if is up (onMouseUp). While it's not up, you can do what you need.

link|flag
Isn't onMouseUp an event too? How will you check the "property" onMouseup? Or whose property, rather? – Rohit Kumbhar Nov 26 '08 at 23:03
@Rohit: you don't check property, you manage a flag indicating the event has happened... The mouse button is either up or down. – PhiLho Nov 26 '08 at 23:11

Your Answer

Get an OpenID
or

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