JSFiddle - React, Tailwind, and code Playground
HTML
<div style="height : 900px;background-color : red">
</div>
JavaScript
function stop(){
return false;
}
var div = document.getElementsByTagName('div');
div[0].onmousewheel= stop;
<div style="height : 900px;background-color : red">
</div>
function stop(){
return false;
}
var div = document.getElementsByTagName('div');
div[0].onmousewheel= stop;