Skip to content

Instantly share code, notes, and snippets.

@kitak
Created February 12, 2012 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitak/1806542 to your computer and use it in GitHub Desktop.
Save kitak/1806542 to your computer and use it in GitHub Desktop.
URLバーの自動消去
<body onload="window.scrollTo(0,1);">
# jQuery
$(document).ready(function () {
setTimeout(function () {
window.scrollTo(0,1);
}, 100);
// 500を使うケースも
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment