You are here: irt.org | About | Feedback | 4294 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q214
Sent by
darkpractice on November 27, 2002 at 20:08:06:
Comments:
You can write a recursive function to navigate DOM and set the onload & onunload handlers, assuming you are coming from the same domain (in frames).
function kill(p_win) {
p_win.onload = null;
p_win.document.onload = null;
if (p_win.frames) { kill(window.top); // remove all handlers (onload & onunload) use a different name than kill, of course Other feedback on 'irt.org FAQ Knowledge Base Q214' - show all
for (var i = 0; i