a question. If i use setInterval in this manner:
setInterval(\'doSome();\',60000);
am i safe that the doSome() function is tri
doSome()
Yes it will be called as long as the page is open, regardless the tab is switched or even the browser is minimized.
However make sure you pass the function not a string to setInterval
it should be >
setInterval(doSome, 60000)