Tipiford;11003540 wrote:The line of code
<FORM><INPUT TYPE="button" VALUE="Return" onClick="history.go(-1);return true;"></FORM></div>
has served me well in form style, but we've been doing some updating and would like to move this code to an image. I tried
<a href="onClick="history.go(-1);return true;">
<input type="image" src="/graphic.jpg" alt="Submit button">
but there's no response on the image.
Did you close the anchor tag </a>?
In any case, I agree with weedpacket: use CSS.
[EDIT] sorry, in addition to that, your link should be:
<a href="#" onclick="history.go(-1);"><I mg goes here></a>