[Javascript] How to solve Var out of scope within setTimeout call - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:35:43Z http://stackoverflow.com/feeds/question/237350 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/237350/javascript-how-to-solve-var-out-of-scope-within-settimeout-call 2 [Javascript] How to solve Var out of scope within setTimeout call JohnIdol 2008-10-26T01:43:00Z 2008-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#237358 2 Answer by jtbandes for [Javascript] How to solve Var out of scope within setTimeout call jtbandes 2008-10-26T01:48:29Z 2008-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#237375 1 Answer by Michael Gundlach for [Javascript] How to solve Var out of scope within setTimeout call Michael Gundlach 2008-10-26T01:57:59Z 2008-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#237387 3 Answer by Andrew Hedges for [Javascript] How to solve Var out of scope within setTimeout call Andrew Hedges 2008-10-26T02:13:37Z 2008-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#237388 9 Answer by FlySwat for [Javascript] How to solve Var out of scope within setTimeout call FlySwat 2008-10-26T02:13:39Z 2008-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>