I have the following input button code. How do I alter this code to use a greyed out version of the button called btn_nxt.png_hold.gif once the submit occurs?
<input onsubmit="this.disabled=true;return true;" type="image" name="Insert" id="Insert" value="Insert" alt="Insert" src="images/btn_nxt.png" />
You need to change the picture when the button is clicked:
The
onsubmitbelongs only to form elements.