I am working on a transition website, and although I want to use the user scroll attempt as a transition initiator, I do not want the window scroll bar to be there.
Now I just find that the user scrolls (I made the window size 1px taller than the user screen for the scroll bar, although this is what I am trying to avoid) with jquery
.scroll(function)
and using this to go to my page, but I would like to detect an attempt to scroll the user without having to overflow the page with a pixel and thus show the scroll bar
How can I do that?
The useless feature of the patch that I know of:
The location of the window inside the outer shell and hiding the scroll bar in the overflow of the wrapper. This is a fix, not a solution. This causes the page content to be off-center, since not all browsers use the same width for their scrollbars.
user2700923
source share