window.addEventListener('unload', function(e)
{
MyClass.shutdown();
window.removeEventListener('unload', /* how to refer to this function? */);
}, false);
|
|
|||||
|
|
Name your function.
Edit I think this will work too. Good point Kobi!
|
|||||||||||
|
|
Howto use recursion on Anonymous Functions Lets say we have an anonymous factorial function and we want to do it recursively. How do we call a function without a name? Well in Javascript the arguments.callee property contains a pointer to the currently executing function which means an anonymous function can, indeed, call itself.
|
|||||||||||
|
|
The
See: MDC: callee |
|||
|
|
|
I haven't tried this, but how about moving the removeEventListener method call into MyClass itself. The method won't be anonymous, but you won't be polluting the global namespace and it will be part of the class it's manipulating. You can even make it "private". I'm not sure what your style is, but I'd write it something like this:
I guess it depends on what MyClass does and how you use it. |
|||
|
|