Skip to content

Instantly share code, notes, and snippets.

@VorticonCmdr
Created February 18, 2021 10:57
Show Gist options
  • Save VorticonCmdr/43da6a8ff0274763f7d5fadcea2d438c to your computer and use it in GitHub Desktop.
Save VorticonCmdr/43da6a8ff0274763f7d5fadcea2d438c to your computer and use it in GitHub Desktop.
scroll the page via #anchor
function scrollTo() {
if (navigator.userAgent.indexOf("Googlebot") == -1) {
return;
}
if (!window.scrollBy) {
return;
}
var pagePattern = /page=(?<page>\d+)/;
var matched = document.location.hash.match(pagePattern);
if (!matched || !matched.groups || (!matched.groups.page) ) {
return;
}
var page = parseInt(matched.groups.page);
window.scrollBy(0, window.innerHeight*page);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment