I am using jquery.mousewheel.js as a part of the jQuery jScrollPane plugin.
I want to disable the mousewheel at some point.
Could someone please recommend a jQuery statement that can do it?
Thank you!
I am using jquery.mousewheel.js as a part of the jQuery jScrollPane plugin.
I want to disable the mousewheel at some point.
Could someone please recommend a jQuery statement that can do it?
Thank you!
For those who are not using the jQuery mousewheel plugin, this worked for me:
$("#inputID").bind("wheel", function() {
return false;
});
The only difference is that the .bind
method takes an argument of wheel
instead of mousewheel
Note: The element I applied this to was on an input
of type number