jquery-1.11.1だとscrollTopがbodyに対して動かなかった
$('body').animate({ scrollTop: 100 });
→jquery-1.9だと動くけど、jquery-1.11.1だとだめだった。
$('html').animate({ scrollTop: reverseOffsetTop + conf.scrollAdjust });
これだとjquery-1.11.1でも動いた。
seen from Malaysia
seen from Austria
seen from Malaysia
seen from China

seen from Canada
seen from Russia

seen from China

seen from Malaysia
seen from China

seen from Italy

seen from Australia
seen from United States
seen from China

seen from Germany

seen from Malaysia

seen from Netherlands
seen from Sweden

seen from South Korea

seen from Malaysia

seen from Mexico
jquery-1.11.1だとscrollTopがbodyに対して動かなかった
$('body').animate({ scrollTop: 100 });
→jquery-1.9だと動くけど、jquery-1.11.1だとだめだった。
$('html').animate({ scrollTop: reverseOffsetTop + conf.scrollAdjust });
これだとjquery-1.11.1でも動いた。
+1 to less jank and AMD
What's New
Fewer forced layouts: In this release we declared war on places where we might inadvertently force the browser to do a time-consuming layout. We found a few and eliminated one in particular that could occur when changing class names. This can result in a big performance boost for some pages.
Granular custom builds: Our modularity is now defined by AMD, and it is easier to build small subsets of the library when space is at a premium. If you want to know more, we’ve hidden the details in the README file where nobody ever looks.
Lower startup overhead: The new modularity and avoidance of forced layouts led us to refactor our feature detects so that they run the first time they’re needed. If you never call the API needing that feature detect, you never run that code. Previously we ran all feature detects when the page loaded, that led to delays that were generally small, but added up–especially on mobile platforms.
Published on npm: Our releases will now be published on npm so that you can use them with node or browserify. Both the 1.x and 2.x branches are available on npm, but remember that only the 2.x branch is supported to run in node.
Published on Bower: We’re now using Bower for our internal dependency management including Sizzle, so you’ll see jQuery releases on Bower as soon as they’re available.