jquery - scrollTop not working in Safari -
firs time happening me, i'm aware scrolltop have issues browsers time in safari, firefox , chrome ok. here code
$(window).scroll(function() { var s = $('html, body').scrolltop(); console.log(s) //ok on ff , chrome, safari returns 0 }
sadly must check both <html>
, <body>
element separately.
$(window).scroll(function() { var s = $('html').scrolltop() || $('body').scrolltop(); console.log(s); });
jquery safari scrolltop
No comments:
Post a Comment