ScrollTop Does Not Work In Chrome, Nor Do Suggested Workarounds
Numerous other questions (here, here and here) have pointed out that scrollTop appears not to work in some versions of Chrome. There is also an open Chrome issue here. Some workaro
Solution 1:
Maybe you can use window.scroll(x,y);
Solution 2:
Give it a try:
$("#ElemtToScroll").scrollTop($("#ElemtToScroll")[0].scrollHeight);
Post a Comment for "ScrollTop Does Not Work In Chrome, Nor Do Suggested Workarounds"