JSFiddle - React, Tailwind, and code Playground

by Vinit Divekar

HTML

<div id="ScrollableDiv" style="height : 900px;background-color : red">

</div>

JavaScript

function stop(){
	return false;
}

var div = document.getElementById('ScrollableDiv');
div.onmousewheel= stop;