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

Just as the title says: setInterval is only firing its callback once.

manifest.json:

{
    //...
    "content_scripts" : [{
        "js" : ["code.js"],
        //...
    }],
    //...
}

code.js (example):

setInterval(alert('only shown once'),2000);

Why, and how I could fix it? The code works well outside of an extension (even in a bookmarklet).

share|improve this question
1  
possible duplicate of JS setInterval executes only once – qwertymk Jan 23 '12 at 12:57

3 Answers

up vote 10 down vote accepted
setInterval(function() { alert('only shown once') },2000);

You need to pass a function reference like alert and not a return value alert()

share|improve this answer
Oh, you're right. There is a problem elsewhere and my attempt at checking it with alert was sloppy. There is a reference in the actual code. – Camilo Martin Jan 23 '12 at 12:58
Could you explain why this behaves the way it does? I'm relatively new to JavaScript and would like to learn as much as I can about it. @qwertymk – JLaw Apr 12 at 18:10
@qwertymk Awesome! Thank you. – JLaw Apr 14 at 18:46

setInterval isn't working at all.

The first argument should be a function, you are passing it the return value of alert() which isn't a function.

Use the three argument version:

setInterval(function,time,array_of_arguments_to_call_function_with);
setInterval(alert,2000,['only shown once']);
share|improve this answer
Oh, you're right. There is a problem elsewhere and my attempt at checking it with alert was sloppy. There is a reference in the actual code. – Camilo Martin Jan 23 '12 at 12:57

The way you wrote it it's wrong:

setInterval() wants a function and a numerical value: setInterval(function(){//your code}, timeInterval).

share|improve this answer
You're right. There is a problem elsewhere and my attempt at checking it with alert was sloppy. There is a reference in the actual code. – Camilo Martin Jan 23 '12 at 12:58

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.