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!
Something like this:
$("#menu").bind("mousewheel", function() {
return false;
});