Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Last active March 22, 2016 19:51
Show Gist options
  • Save kraftbj/5ab6a95904bfca04269e to your computer and use it in GitHub Desktop.
Save kraftbj/5ab6a95904bfca04269e to your computer and use it in GitHub Desktop.
Back link
<a href="#" onclick="history.go(-1)">Go Back</a>
or something like
<button onclick="goBack()">Go Back</button>
<script>
function goBack() {
window.history.back();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment