Skip to content

Instantly share code, notes, and snippets.

@shenmao1989
Created March 26, 2013 11:31
Show Gist options
  • Save shenmao1989/5244742 to your computer and use it in GitHub Desktop.
Save shenmao1989/5244742 to your computer and use it in GitHub Desktop.
每次滚回顶部
//为了避免一些问题 滚回顶部
Event.on(window, 'scroll', function(){
DOM.scrollTop(0);
Event.detach(window, 'scroll', arguments.callee);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment