Previous page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Please help me to make a button with an arrow on it—instead of: ‘Back’—which
would take back visitors to the previous page. Thank you.
 
The "Back" button on the browser DOES have an arrow on it

The code is <input type="button" name="back" value="<-- Back to Previous
Page" onclick="go.history(-1);">

Or use an image with an arrow and the word "Back" then the code:
<a href="#"><img src="images/back_button.gif" onclick="go.history(-1);"></a>
 
Back
Top