Reputation: 1381
I have a page that, when loading, displays a vertical scroll bar that disappears once the page has finished loading. Is there any way to trace this?
Upvotes: 1
Views: 2109
Reputation: 61
Use Overflow:hidden on your maindiv.
Means just make body style overflow-y:hidden and on hover on body just change the style to overflow-y:scroll;
Upvotes: 1