Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
<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.

share|improve this question
@Kon Now fixed. – phihag Jun 19 '11 at 12:36
@Kon Sorry I just added it – yankitwizzy Jun 19 '11 at 12:36
What exactly does not work? What value is received on server side? – Pekka 웃 Jun 19 '11 at 12:37
You'll need to give a better description of what doesn't work. See jsfiddle.net/f672W – Jared Farrish Jun 19 '11 at 12:38
@What does not work is the server side code. I have a php function that checks whether the value of the image field is set and then does something. That is what does not work – yankitwizzy Jun 19 '11 at 12:38
show 2 more comments

6 Answers

up vote 1 down vote accepted

You could use <button name="cmd_delete" value=""><img src=".."/></button> instead of input.

share|improve this answer

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 as cmd_delete.x and cmd_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.

<input type="submit" name="cmd_delete" class="delete" value="" />

with

input.delete {
    background-image: url('bin/images/common/delete.png');
    width: 20px;
    height: 20px;
    border: 0;
    cursor: pointer;
}

and check it as follows

if (isset($_GET['cmd_delete'])) {
    // Delete button pressed.
}
share|improve this answer
Your ans is correct but I used the last ans. Thanks – yankitwizzy Jun 19 '11 at 16:13
@yan: that's fine if you don't want to support IE6. – BalusC Jun 19 '11 at 16:31

Try:

<input type="button" class=”button” value="Delete" title="Delete" name="cmd_delete" />

.button{
      background: url('bin/images/common/delete.png') no-repeat top;
}
share|improve this answer

Following works in IE, FF (and IE6, BalusC!):

<input type="submit" value="" style="background-image: url('bin/images/common/delete.png');width:262px;height:37px;border:0;cursor: pointer;" />
share|improve this answer
My IE6-fail comment didn't concern my own answer, but the "last ans" of lonut staicu (which is currently accepted). – BalusC Aug 15 '12 at 10:22

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.

share|improve this answer

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!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.