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);
|
I want to call function with arguement periodically. I tried But when I add an arguement it won't work. eg: |
||||
|
You can add an anonymous function:
|
|||||||||||
|
|
Use an anonymous function, like this:
In general, never pass a string to Just as a side-note, if you didn't need an argument, it's just:
|
|||
|
|
|
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. |
|||
|
|
setTimeout(fnName, timeinseconds);You can't dosetTimeout(fnName(), timeinseconds);as that will call the function now. – Matthew Flaschen Jun 3 '10 at 12:00