i want to do a setInterval of a function that is at the same level as the declaration of the setinterval but not global
Example:
function a()
{
function b(){alert("hi");}
setInterval("b()",1000);
}
|
i want to do a setInterval of a function that is at the same level as the declaration of the setinterval but not global Example:
|
||||
|
|
|
In your example, simply use I'd go as far as to say you should always use |
|||||||||||||
|