It would be really useful to those of us making expandable skins if you could implement one or both of the other two overloads of setTimeout:
setTimeout(function(){body}, timeout); //where body could be another function with a parameter list and/or setTimeout(function, timeout, parameter);
Because right now, there is no way to pass a parameter to a function with setTimeout because this: setTimeout("function(parameter)",timeout); doesn't work in Javascript.
If you're going to pick one, I think the first one would be much more useful for all kinds of things.
Thanks!
|