JQuery Mousewheel: How to disable?
Something like this:
$("#menu").bind("mousewheel", function() {
return false;
});
Try using .unmousewheel()
, it should also work.
Something like this:
$("#menu").bind("mousewheel", function() {
return false;
});
Try using .unmousewheel()
, it should also work.