IE only sending x&y coords and no value attribute for image button?

Associate
Joined
21 May 2003
Posts
1,365
I have a form with an image button, and i've just found out it isn't working in IE.

Firefox correctly includes the value attribute in the request, but IE only sends X & Y coordinates.... is there any way to get the value?
 
Just for future reference:
When using an image button:
Code:
<input type="image" name="myButton" src="images/myButton.gif" value="item1" />

IE will provide
myButton_x=<image cursor x pos>
myButton_y=<image cursor y pos>

but not
myButton=<value>

unlike Firefox which sends all three.
 
Back
Top Bottom