Forum Moderators: open
I know I can use an image as a submit button on a form. Is it possible to use a text link?
I tried this in a form that works fine when it uses a normal submit button:
<a href="" onClick="this.form.submit();" style="text-decoration:none">Upload</a>
but it didn't work. (The empty URL was to make it clickable.)
Thanks!
Perry
Thanks for the quick reply! I tried this:
<font face=arial,helvetica size=1><b><a href="" onClick="this.form.submit();return false;" style="text-decoration:none">Upload</a></b></font>
and this:
<font face=arial,helvetica size=1><b><a href="" onClick="return false;this.form.submit();" style="text-decoration:none">Upload</a></b></font>
but the form still failed to submit. Is there another place I should try the "return false"?
Thank again,
Perry