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.

Possible Duplicate:
How I can stop vertical scroll by mouse.

I am using javascript/Jquery in web browser. I made a custom horizontal scroll bar which is working with mouse wheel or mouse scroll. Commonly mouse scroll works with vertical bar. So it conflicts with my programmed horizontal scroll bar. I don't want to remove vertical bar completely but just only to disable when we scroll our mouse. If you make sense then please suggest.

share|improve this question
"scroll our mouse" You mean the scroll wheel? – epascarello Jul 8 '11 at 14:33
2  
So there are horizontal and vertical scroll bars, but you want the wheel to scroll horizontally when the user is expecting it to scroll vertically? What about touch-pads and tilt-wheels that already scroll in both directions? – RobG Jul 8 '11 at 14:42
1  
Did you search this on SO already, or is this not applicable to you? stackoverflow.com/questions/2032009/… – josh.trow Jul 8 '11 at 14:47
1  
And this one...stackoverflow.com/q/2346958/446747 – josh.trow Jul 8 '11 at 14:48

marked as duplicate by Jeff Atwood Jul 11 '11 at 11:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted
$('selector_for_your_container')
  .bind('mousewheel DOMMouseScroll', function(e) {
    e.preventDefault();
  });
share|improve this answer

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