PDA

View Full Version : Help With Script


FLOWERMAN1234
11-14-2005, 10:18 PM
Hi

I have the following script below for back on History. However I would like to use a graphic.Does anyone have any idea how I can edit the script to use a graphic instead of a button?Looking forward to hearing from you.

<form><input type=button value="Back" onClick="history.back()"></form>

Your Friend Chuck (FLOWERMAN1234@cs.com)

blindchild
11-14-2005, 10:25 PM
Howdy there chuck.
Try this:
<form><input type=image onClick="history.back()" value="Back" src="button.gif">
</form>
I think it should work.
Let me know
Ross

_Aerospace_Eng_
11-15-2005, 12:01 AM
Or even this
<a href="#" onclick="history.back();return false;"><img src="button.gif" alt="Go Back" style="border:0;"></a>