I\'ve searched for an answer to this question and came across hide scrollbar while still able to scroll with mouse/keyboard but the jQuery plugin doesn\'t quite do what I\'d
That is standard browser behavior.
Taking away scrollbar reduces user-friendliness.
You can set scrollbar to stay visible all the time with css.
CSS:
body { overflow-y: scroll; }