View Full Version : back code


adrielle
07-18-2003, 10:48 AM
i have this code:

<FORM><INPUT TYPE="button" VALUE=" Back " onClick="history.go(-1)"></FORM>

but i dont want it to be a button...how do i just convert it to a text link? (it takes you back to the page where you just where)

pb&j
07-18-2003, 11:53 AM
give this a go...

<a href="#" onClick="history.go(-1)"> text here </a>

adrielle
07-19-2003, 08:58 AM
thank you:D!