Showing posts with label HTML Javascript Creating Back button. Show all posts
Showing posts with label HTML Javascript Creating Back button. Show all posts

Wednesday, 3 June 2015

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.

<form>

    <input type="button" value="Previous Page" onclick="history.go(-1)">
    </form>