A
Andrew Poulos
In a frameset I have this:
window.onload = function() {
frames[1].onunload = function() {
alert('I'm going now');
}
}
when frames[1] unloads I'm expecting the alert to be called but it never
does. If, instead, I put this into frames[1] it does call the alert:
window.onunload = function() {
alert('I'm also going now');
}
How can I get it to work from the frameset?
Andrew Poulos
window.onload = function() {
frames[1].onunload = function() {
alert('I'm going now');
}
}
when frames[1] unloads I'm expecting the alert to be called but it never
does. If, instead, I put this into frames[1] it does call the alert:
window.onunload = function() {
alert('I'm also going now');
}
How can I get it to work from the frameset?
Andrew Poulos