$("body").scrolltop() Doesn't Update In Safari
I'm working on a website: http://beta.projektopia.se/ the body has several background-images that are updated on scroll like this: $(document).ready(function(){ $(document).sc
Solution 1:
The scrollTop
jQuery method has been known to be problematic.
Depending on the browser, you may need to use $('html, body').scrollTop()
or $(document).scrollTop()
or $(window).scrollTop()
.
Post a Comment for "$("body").scrolltop() Doesn't Update In Safari"