<input type="image"value="Delete" title="Delete" name="cmd_delete" src="bin/images/common/delete.png"/>
The above HTML code is for a Delete button in my application. The problem is that this button does not work in Firefox 4 but works in other browsers. Please how can I fix this.
Suppose:
<input type="image" name="submit" src="signout.png" />
If you are using php, change your code from
to
Just check for $_REQUEST['submit_x'] if its set or not empty. Older browsers don't set $_REQUEST['submit'] when using input type image. Don't really know why...
Then there's no need to apply CSS to the tag.
The problem with using
<button name="cmd_delete" value=""><img src=".."/></button>
is that you still see the button behind the image. It looks horrible. Why is this negative voted...it is true, I tried it!You're basically abusing the
<input type="image">
to have a button with a background image. The<input type="image">
represents an image map. The mouse position on the button is been sent ascmd_delete.x
andcmd_delete.y
parameters. But you are not interested in the mouse position. Replace it by a normal<input type="submit">
and use CSS to specify a background image. E.g.with
and check it as follows
Try:
You could use
<button name="cmd_delete" value=""><img src=".."/></button>
instead of input.