![]() |
|
|
+ Search |
![]()
|
May 27th, 2000 09:42
Martin Honnen, Pat Friedl,
In IE4+ and NN6 there is no difference to referencing a top level layer
or a nested layer just ID the layer and use
document.all['layerID']
for IE and
document.getElementById('layerID')
for NN6. Only NN4 makes nested layers accessible with nested references
so there you need to script
window.document['outerLayerID'].document['innerLayerId']
where you have to add
.document['layerID']
for further levels of nesting