tags:

views:

54

answers:

2

Hi we are have a strange issue.

One of our clients is complaining, that in IE they are unable to see any value , when they select a value from the drop down.

The strange thing is , its working in fire Fox.Also we could not even replicate in IE on our end.

the code that gets executed in java script when a value is selected in a drop down

document.getElementById('GLSpan').innerHTML = pnumArr[0];
document.getElementById('GLCheckbox').style.display ='inline';

GLSpan is a span element GLCheckbox is a check box element

Any ideas would be appreciated

A: 

Wow they couldn't be on ie 4 could they? http://msdn.microsoft.com/en-us/library/ms530751(VS.85).aspx

If so you might want to gently suggest they upgrade.

Byron Whitlock
no they are on IE 7 and IE 8
mita
A: 

Sorry for my english ...

try with "block" or "" value for style.display, I am not sure but I think checkbox doesn't have attribute "inline" for display property for IE

el_quick
but check box do have style atttribute rt?and its working perfectly in FF and its even working great in IE on our end..its only the problem from client's side
mita
IE Versions? if you have the same version than your client, likely you client (or you) has some plugin, add-on or something like installed, try reproduce the error on other machine than you client or yours.
el_quick