I need help on coding.
I am creating a form which contains first name, last name, designation and etc.
When they click or mouse over on "Submit" btn, I want "Submit" btn, to change colour
Can please advice on how to do that ?
Here is my code:
Code: Select all
<table width="234px" cellpadding="0" cellspacing="0">
<tr>
<td align="left" style="background: none;">
<input style="border:0; background: url('img/btn_submit.png') no-repeat; width: 63px; height: 22px; display: inline;" type="submit" class="f_submit" value="" />
</td>
<td align="right" style="background: none;">
<input style="border:0; background: url('img/btn_clear.png') no-repeat; width:54px; height:22px; display: inline;" type="button" class="f_clear" id="clearFormBtn" name="clearFormBtn" />
</td>
</tr>
</table>Thank you