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

#241794
GMK Hussain
Participant

add this jQuery code mousewheel will disable.

$('body').bind("mousewheel", function() {
    return false;
});