|
Creating a Go Back Button
This is a really cool trick to send
people back to the previous page.
TRY IT:
Here's the code:
<FORM><INPUT TYPE=button VALUE=Go
Back onclick=window.history.back()></FORM>
Where you can change the Go
Back text to say what you like. This is the text that
appears on the button. You can change that part buy no other
part.
Now, if you're feeling brave, and
want to use the Javascript method: here's that code (it's
really not any harder, just sounds that way):
<a href=javascript:history.go(-1)><img
name=order
src=gobackbutton.gif width=103 height=31></a>
In this example, you create your
own "Go Back" button in a graphics program, then
upload the image. Just change the link information to match
your location of your image:
src=gobackbutton.gif
will change to your image's location.
|