Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created February 27, 2013 04:10
Show Gist options
  • Save jlittlejohn/5044990 to your computer and use it in GitHub Desktop.
Save jlittlejohn/5044990 to your computer and use it in GitHub Desktop.
JS: Browser Back & Forward (Vanilla)
function moveBack() { // Simulate Back Button
history.back();
}
function moveForward() { // Simulate Forward Button
history.forward();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment