Home › Forums › JavaScript › Disable mousewheel events › Reply To: Disable mousewheel events
May 17, 2016 at 8:16 am
#241794
Participant
add this jQuery code mousewheel will disable.
$('body').bind("mousewheel", function() {
return false;
});