Posted by harry on 05/25/05 10:43
Uisng IE 5.5 (sp2) - intranet app & no other browser required.
I have a table row with one cell in which there are 5 images. Depending on
what the user does these are shown/hidden (using functions below) as
neccesary.
The trouble is when you resize the browser window, & the table automatically
resizes's, those image's that have been made visible using the showObject()
function below disappear!
Tried it in Firefox & no problem so is this a bug in IE? if so has anyone
else come across? workaround? or am I doing something daft?
If I make the cell a fixed with rather than "100%" they stay visible!
function showObject(id)
{
getElement(id).style.display = '';
}
function hideObject(id)
{
getElement(id).style.display = 'none';
}
Completely baffled!
thanks
harry
[Back to original message]
|