Disabling Vertical Scroll By Mouse
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
Solution 1:
$('selector_for_your_container')
.bind('mousewheel DOMMouseScroll', function(e) {
e.preventDefault();
});
Post a Comment for "Disabling Vertical Scroll By Mouse"