to call a javascript function periodically
Posted
by shinod
on Stack Overflow
See other posts from Stack Overflow
or by shinod
Published on 2010-06-03T11:55:31Z
Indexed on
2010/06/03
13:44 UTC
Read the original article
Hit count: 195
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);
© Stack Overflow or respective owner