novice2004
Programmer
I have a Jvacript Form with Submit button that works.
<TD align="center" colSpan=2>
<a href="javascript:document.SubmitForm.submit()" onClick="return validateUSPersonalInfo(SubmitForm)">
<img src="../Pictures/Submit.gif" border=0 alt="Submit" width="73" height="17"></a>
</TD>
I would like to replace "Submit.gif" button with button made by CSS.
How do I set it up so retain the functions of the previous button.
<TD width="50" valign="middle" align="right">
<input class="loginBtn" type="submit" name="submit" value="">
</TD>
Thank you.
<TD align="center" colSpan=2>
<a href="javascript:document.SubmitForm.submit()" onClick="return validateUSPersonalInfo(SubmitForm)">
<img src="../Pictures/Submit.gif" border=0 alt="Submit" width="73" height="17"></a>
</TD>
I would like to replace "Submit.gif" button with button made by CSS.
How do I set it up so retain the functions of the previous button.
<TD width="50" valign="middle" align="right">
<input class="loginBtn" type="submit" name="submit" value="">
</TD>
Thank you.