Skip to content

Instantly share code, notes, and snippets.

@roachhd
Created October 11, 2014 00:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roachhd/534b0748e1ff86a1816b to your computer and use it in GitHub Desktop.
Save roachhd/534b0748e1ff86a1816b to your computer and use it in GitHub Desktop.
Back Button, uses browser history to go back to the last page.
<script>
function goBack() {
window.history.back()
}
</script>
<body>
<button onclick="goBack()">Go Back</button>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment