[eluser]Kenshiro[/eluser]
I think he is referring to the ability to use an image as a submit button, problem is that browser support is dodgy as best when using
Code:
<input type="image" src="...." name="submit" />
IEx will capture only the coordinates where the button was clicked and not submit the name "submit" firefox will do it though.
The best way is to use the
Code:
<button type="submit" class="anycsshere" name="submit">Submit</button>
And skin it accordingly !