Hi,
I am changing all my clickable images to buttons - I though all I had to do was change the input type from "image" to "button" but when a button is clicked the form is not submitted
any ideas welcome
OLD image - this works fine
NEW button - jscript runs, but form is not submitted
I am changing all my clickable images to buttons - I though all I had to do was change the input type from "image" to "button" but when a button is clicked the form is not submitted
any ideas welcome
OLD image - this works fine
Code:
<input name="Action" type="image" id="Action" value="ADD" src="images/messagebutbot_06.gif" width="44" height="18" border="0" alt="send" onClick="return EW_checkMyFormcontactus(this.form);">
NEW button - jscript runs, but form is not submitted
Code:
<input name="Action" type="button" id="Action" value=" Send " border="0" alt="Send" onClick="return EW_checkMyFormcontactus(this.form);">