Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Disable mousewheel events Reply To: Disable mousewheel events

#241800
Shikkediel
Participant

That’s not really cross browser compatible (and .bind a bit old), I’d go with :

$(window).on('wheel', function() {
    return false;
});

Or for deeper browser support :

$(window).on('mousewheel DOMMouseScroll', function() {
    return false;
});