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

#241840
Shikkediel
Participant

Maybe take the plain JS route then…

function disable() {
document.removeEventListener('mousewheel', Go);
document.removeEventListener('DOMMouseScroll', Go);
}

function enable() {
document.addEventListener('mousewheel', Go);
document.addEventListener('DOMMouseScroll', Go);
}