I needed this for image buttons.
My version of it, which I think is simple and effective (thanks to all the previous contributors) but needs javascript:
function imgClick(value)
{
document.getElementById('IEfix').value = value;
}
--------------------------
No need to specify a different name for each image, you get 'imageButton' = value on Firefox, and 'imageButton' = "" on IE.
Then if you check 'imageButtonIE' you get the codename value of the clicked image (you can put there the name, or the index...)
Comment
this is a fantastic solution - thanks
Parent comment
I needed this for image buttons. My version of it, which I think is simple and effective (thanks to all the previous contributors) but needs javascript: function imgClick(value) { document.getElementById('IEfix').value = value; }
-------------------------- No need to specify a different name for each image, you get 'imageButton' = value on Firefox, and 'imageButton' = "" on IE. Then if you check 'imageButtonIE' you get the codename value of the clicked image (you can put there the name, or the index...)