Forum Moderators: open
How do I replace the standard 'Submit' button in a form with a custom image?
<input type="image" src="my_image.png" alt="The text in my image" />
Both type="image" and type="submit" will submit a form.
Does it matter if I include 'name' or 'value' specs with it, as on a regular Submit button?
i.e. <input type="submit" name="submit" value="Click Here" />
document.forms['formname'].submit();
To ba safe, call it submit_button or something. While your at it, add an ID.