in CSS there is an ID like #mylayer
in HTML in the BODY I have an ONLOAD="Init():"
in JavaScript I have in the Init() { [initialize]; [browser detect];
HideAllLayers(); }
Apparently the "HideAllLayers()" gets called pretty late. So, I was
wondering if there is a way to hide a layer in the CSS file (so that the
HideAllLayers() does not need to be initially called) somehow and still be
able to shown again when the ONMOUSEOVER="ShowAllLayers();" is called?
BTW, this latency is only a problem in IE (geee, what a surpise!)
TIA,
-John
"John" <re...@newsgroup.only> escribió en el mensaje
news:Y2MMb.8174$m53...@newssvr23.news.prodigy.com...
I think maybe it's better to change the "display" property - not
"visibility"? Else the browser will reserve the place for invisible
control which maybe will break the page face.