Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a way to stop the middle mouse click from causing the browser to start scrolling, and showing the little scroll 'compass'.

I have seen Disabling middle click scrolling with javascript however the solution is a bit more hackey than I would like, and doesn't seem like something I could actually use.

I'm looking for a more definitive "This is how you do it" or "You cannot do that, son".

I am of course open to hacks and workarounds.

Just because S.O. questions look nicer with code, here is what I am using to close tooltips when right or middle clicking.

msg.mousedown(function(e) {
    if (e.which == 2) {   //middle mouse click
        msg.hide();
        e.preventScrolling();   //if only this worked...
    }
    else if (e.which == 3) {   //right mouse click
        msg.hide();
    }
}).bind('contextmenu', function(e) {
    e.preventDefault();
}).click(function(e) {
    e.stopPropagation();
});

edit: jQuery, JavaScript, whatever, let's just all play nicely now :)

Edit 2:

I'm more interested in preventing the little scroll 'compass' than stopping the page from scrolling. I guess that wasn't very clear from my initial description.

share|improve this question
8  
I very highly advise against breaking basic browser/OS functionality. – JAAulde Feb 27 '11 at 23:37
@JAAulde: In some web applications, scrolling might not be meaningful so disabling it can be useful. – pimvdb Feb 27 '11 at 23:52
My mouse doesn't even have a middle button! Oh wait, it hasn't got any buttons at all. :) – rightfold Feb 27 '11 at 23:54
@JAAulde The context for this is small popup notifications, I guess you might call them 'Growl style notifications'. I want users to be able to right or middle click on these to dismiss them without the context menu appearing (check!) or the scroll 'compass' appearing. I HIGHLY doubt anyone is going to be trying to scroll in a <100px message which will never be scrollable. On principle, I do however agree breaking standard browser/OS functionality should be avoided but there are situations that I feel warrant it. – elwyn Feb 28 '11 at 19:46
I don't want to be argumentative, but if you "HIGHLY doubt anyone is going to be trying to scroll in a <100px message which will never be scrollable," why are you bothering? – JAAulde Feb 28 '11 at 21:10
show 2 more comments

4 Answers

up vote 4 down vote accepted

Use:

$('body').mousedown(function(e){if(e.button==1)return false});

This works on Chrome: http://jsfiddle.net/PKpBN/3/

share|improve this answer
1  
@pimvdb Why use event attributes when you can bind the event handlers unobtrusively? – Šime Vidas Feb 27 '11 at 23:49
Because this works just fine... – pimvdb Feb 27 '11 at 23:50
And because it screws up the semantics. – rightfold Feb 27 '11 at 23:54
@pimvdb Yes, it works, but it's still inferior to JavaScript event binding. – Šime Vidas Feb 27 '11 at 23:54
1  
@pimvdb Btw, you have to specify the event as an argument of the event handler function(e) { e.button ... } – Šime Vidas Feb 28 '11 at 2:21
show 8 more comments

If you want to stop scrolling completely, here is the required code:

window.onscroll = function() {
    document.body.scrollTop = 0;
}

This will effectively disable the middle button as well..

share|improve this answer
jsfiddle.net/XcBDF In Chrome, this disables dragging the scrollbar, or clicking the scroll buttons on the scroll bar, but it does nothing to the middle mouse button, I can scroll and click-scroll just fine. In Firefox it does nothing. – elwyn Feb 28 '11 at 19:40
It did disable scrolling when moving the middle wheel but you're right about clicking it.. maybe in combination with code disabling that click then. – Shadow Wizard Mar 1 '11 at 6:54

Try using return false; instead of e.preventScrolling();

share|improve this answer
document.body.style.overflow=allowScroll?"":"hidden";
share|improve this answer
I can't seem to get this one to work, any idea what I mightn't be doing correctly? jsfiddle.net/2R7tj – elwyn Feb 28 '11 at 19:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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