When I click my mouse and move it to the edge of the screen, the page automatically scrolls in that direction (at least on Chrome).
For instance, if you go to: Google
Press the mouse down and move your cursor to the bottom of the screen while keeping the button pressed, the page will scroll downwards.
I would like to disable this on my own website, and prevent the browser from scrolling automatically. Can this be done?
At first I thought it had to do with text selection, and I tried
$("body").disableSelection()
But that doesn't work.