Yes, the following is very common however fails in Firefox:
<a href="javascript:formName.submit()">Submit</a>
You will find this works in Firefox, Opera and IE
<a href="javascript:document.forms['formName'].submit()">Submit</a>
FYI If you want to turn the cursor into a hand onHover use:
cursor:pointer;
in your class for your anchor tag
Wind is your friend
Matt
|