javascript simple question
Posted
by Michael
on Stack Overflow
See other posts from Stack Overflow
or by Michael
Published on 2010-05-12T05:00:54Z
Indexed on
2010/05/12
5:04 UTC
Read the original article
Hit count: 166
JavaScript
|function
window.addEventListener('unload', function(e)
{
MyClass.shutdown();
window.removeEventListener('unload',
/* how to reference the function itself here? */);
}, false);
The question in the comment.
© Stack Overflow or respective owner