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
This works for me:
body{
overflow:hidden;
}
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;
}
Just for completeness sake, to answer your question, here is the scrollable page without scrollbar.
Note that this is not preferred, and I would also force the scrollbar as Lobello already answered.
If you really want to disable the scrolling (In a frameset, the worst possible place for scrolling) then use scrolling=no.