I've just been reading though the html form input tag page and the src attribute explanation confused me.
It says "Specifies the URL to an image to display as a submit button".
This makes it sound like the tag should read
CODE
<input type="submit" src="folder/file.png" />
However, the correct syntax for an image submit button is:
CODE
<input type="image" src="folder/file.png" />
This seems like common sense, seeing as there is an image type, but for people with no ingenuity, this may confuse them
The src explanation should read something like:
Specifies the URL to an image to display as a submit button (for type="image")
Sorry to be picky.
Thanks.
Matthew Millar