[Javascript] How to solve Var out of scope within setTimeout call - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:35:43Zhttp://stackoverflow.com/feeds/question/237350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call2[Javascript] How to solve Var out of scope within setTimeout callJohnIdol2008-10-26T01:43:00Z2008-10-26T02:38:50Z
<p>I am trying to call a setTimeout from within a setInterval callback:</p>
<pre><code>function callback()
{
//assign myVar
var myVar = document.getElementById("givenID");
//...
//now wait 2 secs then call some code that uses myVAr
setTimeout("myVar.innerHTML = 'TEST'", 2000);
}
setInterval("callback();", 10000);
</code></pre>
<p>setInterval works as expected but setTimeout call is failing. I guess the problem is related to the fact that I am referencing a variable (myVar) that's not in scope.</p>
<p>What's the best way to solve this?</p>
http://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call/237358#2373582Answer by jtbandes for [Javascript] How to solve Var out of scope within setTimeout calljtbandes2008-10-26T01:48:29Z2008-10-26T01:48:29Z<p>It seems to work for me. What do you mean by "failing"? And what browser/etc. are you using?</p>
http://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call/237375#2373751Answer by Michael Gundlach for [Javascript] How to solve Var out of scope within setTimeout callMichael Gundlach2008-10-26T01:57:59Z2008-10-26T01:57:59Z<p>Run it in Firefox and check Tools | Error Console. if setTimeout fails it may tell you why there.</p>
<p>Also, try replacing <code>"someFunction();"</code> with <code>"alert('hi')"</code> (no semicolon) and see if that works. If so, the problem is narrowed down significantly.</p>
http://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call/237387#2373873Answer by Andrew Hedges for [Javascript] How to solve Var out of scope within setTimeout callAndrew Hedges2008-10-26T02:13:37Z2008-10-26T02:13:37Z<p>As a matter of best-practice, try not to use strings as parameters to <code>setTimeout</code> and <code>setInterval</code> because that will invoke <code>eval</code> ... Using the following form might also make this problem easier to understand/debug:</p>
<pre><code>setInterval(function () {
// do stuff
// ...
// now wait 2 secs then call someFunction
setTimeout(someFunction, 2000);
}, 10000);
</code></pre>
http://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call/237388#2373889Answer by FlySwat for [Javascript] How to solve Var out of scope within setTimeout callFlySwat2008-10-26T02:13:39Z2008-10-26T02:38:50Z<p>This is a perfect candidate for closures:</p>
<pre><code>setInterval(
function ()
{
var myVar = document.getElementById("givenID");
setTimeout(
function()
{
// myVar is available because the inner closure
// gets the outer closures scope
myVar.innerHTML = "Junk";
},2000);
}, 10000);
</code></pre>
<p>Your problem is scope related, and this would work around that.</p>