|
From: Kevin B. <Kev...@bb...> - 2004-05-04 10:08:50
|
Hello,
create a layer in Mozilla:
...
#testL {position:absolute; left:176px; top: 0px; z-index:10;
visibility:hidden;}
...
<div id="testL" name="testL"></div>
...
If you try to get the visebility in Mozilla...
function myVisibleTest () {
testDynLayer = DynLayer.getInline("testL");
alert(testDynLayer.getVisible());
}
... Mozilla returns true.
(IE returns false)
A BUG?
(I already have a workaround but could you please fix it?)
Thanks
Kevin |