Hi,
I'm following
peter.michaux.ca - The window.onload Problem (Still)
Code JavaScript:function init() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; };
I mean argumentes.callee is a reference to the function being called
so what arguments.callee.done is ? Is it a local var ?
Can you explain me , please ?






Bookmarks