Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to call function with arguement periodically.

I tried setTimeout("fnName()",timeinseconds); and it is working.

But when I add an arguement it won't work. eg: setTimeout("fnName('arg')",timeinseconds);

share|improve this question
I don't think you need '' – ant Jun 3 '10 at 11:56
Without arguments, it should be just setTimeout(fnName, timeinseconds); You can't do setTimeout(fnName(), timeinseconds); as that will call the function now. – Matthew Flaschen Jun 3 '10 at 12:00
@Matthew Flaschen - It's in quotes in the question :) – Nick Craver Jun 3 '10 at 12:03
@Nick, I know. I was addressing @c0mrade's comment. – Matthew Flaschen Jun 3 '10 at 12:06

3 Answers

up vote 10 down vote accepted

You can add an anonymous function:

setTimeout(function() { fnName("Arg"); }, 1000);
share|improve this answer
worth mentioning - this is called "currying" :) – Yonatan Karni Jun 3 '10 at 15:01
@Yonatan nice, never heard of that :) Do you mean the putting the call into an anonymous function? – Pekka 웃 Jun 3 '10 at 15:19
setTimeout is not calling function repeatedly, but setInterval calling repeatedly – shin Jun 4 '10 at 9:23
@shinod you're right; the principle is the same. – Pekka 웃 Jun 4 '10 at 9:41
yes, it's a mathematical notion. from wikipedia: "currying is the technique of transforming a function that takes multiple arguments (or an n-tuple of arguments) in such a way that it can be called as a chain of functions each with a single argument." although I wonder if it's still currying when you're not passing ANY arguments :) – Yonatan Karni Jun 5 '10 at 9:50

Use an anonymous function, like this:

setTimeout(function() { fnName('arg'); }, time);

In general, never pass a string to setTimeout() or setInterval() if you can avoid it, there are other side-effects besides being bad practice...e.g. the scope you're in when it runs.

Just as a side-note, if you didn't need an argument, it's just:

setTimeout(fnName, time);
share|improve this answer

setTimeout accepts an expression or a function name or an anonymous function but NO () operator.

() will start executing the function immediately and results in setTimeout accept an invalid parameter.

share|improve this answer

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.