.scrollleft() Method Not Working
I have page with some jQuery scripts. Everything is fine except IE. I can't resolve where's the problem with scrolling. Whole page is one long horizontal page. Everytime when I ch
Solution 1:
I think you should use $("html,body").animate({--your code--})
instead of using either $("html")
or $("body")
.
Replace this line:
var leftOffset = $(document, window).scrollLeft();
with
var leftOffset = $(document).scrollLeft();
for IE.
Reference: http://forum.jquery.com/topic/animate-scrollleft-get-problems-in-ie-and-ff
Post a Comment for ".scrollleft() Method Not Working"