I am trying to deactivate the mouse scroll in jQuery and successfully did so, however, I encountered this error message
jquery.min.js:2 [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See
This is the JavaScript code snippet:
$(document).ready(() => {
$(window).bind("mousewheel", function() {
return false;
});
})