Is it possible to scroll vertically a div without using scrollbar instead using only mousewheel up and down for scroll ?
I have a instance like ,
<div style="height:200px">
<div class="samplediv" style="overflow:scroll;overflow-y:hidden;height:1000px">
.
.
.
.
</div>
</div>
such that bigger div lies inside the smaller div , i want to scroll up as well as down the inner div , but i wanna hide my vertical scroll , is that possible in anyway , i tried with event hooks for scroll , but event is not hooked.