I have run into a bit of a serious problem with a web application.
I have a submit image (input type=image) on a web form. I deliberately chose this because its been around forever and all browsers understand it
Of course our favourite browser does not! If you scale your desktop, say if you have vision problems. IE does not scale the clicks properly
So we have an image, when a user clicks the image the form is submitted and the x and y co-ordinates of the click are also submitted. In IE these co-ordinates are not scaled correctly. IE submits bad co-ordinates. Firefox ( I haven't tested others ) submits the correct scaled co-ordinates.
As an example if the image is 100*100 pixels in size and the desktop is scaled by 150% when someone clicks the bottom right corner of the image Firefox returns [100,100] but IE returns [150,150] which is off the image!
This is bit of a show stopper for me and I need a way to work around it. If anyone has any ideas it would be appreciated. perhaps the scale factor can somehow be returned and I can calculate the scaling myself and do the adjustment in the application?
DC