Last active
March 22, 2016 19:51
-
-
Save kraftbj/5ab6a95904bfca04269e to your computer and use it in GitHub Desktop.
Back link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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