< Back

Document Subject: Javascript: Go Back button
Hint Short Cut: Add this to your code & documentation to help you find this page.
http://#JSBack or http://A555F9/nn.nsf/ByAlias/JSBack

Web browser Go Back in a Button




<input type="button" value="Back" onclick="history.back();">

You will need the <form> tag first if you do not have a form.

 

or you can do a

<a href='#' onClick='history.back();return true;'>back</a>

with out needing form tags.