Javascript Event Before Scroll Redraw?
I have a javascript function on the onscoll event to change a div's style. The problem is that most browsers draw the div after a scoll but before the onscoll event fires, so you e
Solution 1:
Maybe set the body to overflow:hidden to start, and change it to overflow:auto once the first onscroll fires.
Post a Comment for "Javascript Event Before Scroll Redraw?"