JQuery Mousewheel: How to disable?

Dimitri Vorontzov picture Dimitri Vorontzov · Jul 15, 2011 · Viewed 28.7k times · Source

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!

Answer

Mrchief picture Mrchief · Jul 15, 2011

Something like this:

$("#menu").bind("mousewheel", function() {
    return false;
});