I am using jQuery.scrollTo in order to reach a certain DOM element w/ an easing effect. The plugin always worked like a charm in every browser.
Yesterday I noticed it didn't work on Chrome 34, and as I inspected the plugin I found it uses $.animate
, so I reduced the problem to this fiddle:
$('body').animate({'scrollTop': 300}, 200)
Curiously enough, everything works fine on Chrome Canary [and all other major browsers].
This question didn't help either.
Is it a known bug of current Chrome version [which is supposed to be fixed on Canary]? I will fallback to plain anchors + ids in case.