JSFiddle - React, Tailwind, and code Playground
by slash197
HTML
<div style="height: 500px; background-color: #ff0000;"></div>
<div style="height: 500px; background-color: #00ff00;"></div>
JavaScript
$(document).ready(function(){
$(document).scroll(function(event){
return false;
console.log('scrolling');
event.stopPropagation();
event.preventDefault();
return false;
});
});