Page 1 of 1

back button

Posted: Wed Mar 14, 2012 2:50 pm
by mister_v
Hi,

I want to create a back-button on my page.
What is the fastest way to do this?

Thanks

Re: back button

Posted: Thu Mar 15, 2012 6:05 pm
by chris
Just create a button with a little javascript.

Code: Select all

<form>
<INPUT type="button" value="Click here to go back" onClick="history.back()">
</form>
That should work in any browser.