tags:

views:

30

answers:

1

Is there anyway I can prevent the input type=image from sending the mouse coordinates during form submission.

Thanks, Sivakumar.

+2  A: 

I don't think so, since that's the entire point of that element.

If you don't want the mouse coordinates, could you not change to use a standard <input type="submit">, and simply style it to use the same image?

Andrzej Doyle
Yup, disabling borders and setting a CSS `background-image` along with a `width` and `height` should work.
Pekka