DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Scroll To Top Of Page In GWT
Scrolling to the top of a page after a view transition can be useful when you're displaying banner ads on the top, or when you want to make a GWT application appear like a Web 1.0 application.
public static native void scrollToTop() /*-{
$wnd.scroll(0, 0);
}-*/;






