Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
}
share|improve this question

1 Answer

up vote 9 down vote accepted

In your example, simply use setInterval(b, 1000) instead of setInterval("b()", 1000).

I'd go as far as to say you should always use setInterval and setTimeout with a real function instead of a string.

share|improve this answer
1  
You should do this anyway, not just in the example. – Rocket Hazmat Apr 19 '12 at 14:21
thank you ! and if it's like that : – user1342369 Apr 19 '12 at 14:22
function f(){function a(){}function b(){setInterval(a,100);}} – user1342369 Apr 19 '12 at 14:24
jsfiddle.net/loktar/zvCYZ/3 A fiddle of it working +1 – Loktar Apr 19 '12 at 14:24
@user1342369 That's right. – James McLaughlin Apr 19 '12 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.