Create Back Button with JavaScript
You may create a back button like your browser has. The following script allows the visitor
to press a button and returns the him to the previous page.
[View All Snippets]
[View All Snippets]
Show Plain Text »
- <form>
- <input type="button" value="Previous Page" onclick="history.go(-1)">
- </form>