I am trying to capture the onunload event in Netscape 4 using this piece of javascript:
<script>
var exit=true;
function xit(){
if (exit)
open("URL","","width=390,height=200"
}
</script>
with <FRAMESET cols="whatever" onunload="xit()"> etc
It works fine with a two window frameset, but not with a three window frameset (regardless of which frameset tag I place the onunload attribute)
Anyone have any ideas?
<script>
var exit=true;
function xit(){
if (exit)
open("URL","","width=390,height=200"
}
</script>
with <FRAMESET cols="whatever" onunload="xit()"> etc
It works fine with a two window frameset, but not with a three window frameset (regardless of which frameset tag I place the onunload attribute)
Anyone have any ideas?