How can I get events to fire in Netscape 4 with nested layers?
<div id="frame">
<div id="sub1" onMouseOver="doThis();" onClick="doThat();">Sub 1</div>
<div id="sub2" onMouseOver="doThis();" onClick="doThat();">Sub 2</div>
</div>
This works fine with IE and NS6, but with NS4, the events never fire. The only way I can get an event to fire is to put the event handler in the outer layer frame and then I do not know which sub layer caused the event.
Beyond the fact that NS4 is a piece of junk, does anybody else have some workable solutions?
Thanks
-- Jeff
<div id="frame">
<div id="sub1" onMouseOver="doThis();" onClick="doThat();">Sub 1</div>
<div id="sub2" onMouseOver="doThis();" onClick="doThat();">Sub 2</div>
</div>
This works fine with IE and NS6, but with NS4, the events never fire. The only way I can get an event to fire is to put the event handler in the outer layer frame and then I do not know which sub layer caused the event.
Beyond the fact that NS4 is a piece of junk, does anybody else have some workable solutions?
Thanks
-- Jeff