Skip to content

Instantly share code, notes, and snippets.

@johnbocook
Last active November 5, 2015 14:16
Show Gist options
  • Select an option

  • Save johnbocook/f2556fb29fe8040e52c3 to your computer and use it in GitHub Desktop.

Select an option

Save johnbocook/f2556fb29fe8040e52c3 to your computer and use it in GitHub Desktop.
Sends visitor back one page in their browser history.
//Improper - Does not always work on chrome
<a href="www.mypage.com" onclick="history.go(-1)"> Back </a>
//Proper
<a href="www.mypage.com" onclick="window.history.go(-1); return false;"> Back </a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment