Problems with variable scope (JavaScript) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:18:59Z http://stackoverflow.com/feeds/question/717823 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/717823/problems-with-variable-scope-javascript 0 Problems with variable scope (JavaScript) Josh Leitzel 2009-04-04T21:07:32Z 2009-04-04T21:14:18Z <p>I have the following JavaScript (I'm using jQuery):</p> <pre><code>function language(language) { var text = new Object(); $.ajax({ type: "GET", url: "includes/xml/languages/" + language + ".xml", dataType: "xml", success: function(xml){ $(xml).find('text').each(function(){ text[$(this).attr('id')] = $(this).text(); }); } }); return true; } </code></pre> <p>I have an XML file which is then being read by the class. The XML file has declarations like this:</p> <pre><code> &lt;text id="must_be_string"&gt;Must be a string.&lt;/text&gt; &lt;text id="must_be_number"&gt;Must be a number.&lt;/text&gt; &lt;text id="must_be_integer"&gt;Must be an integer.&lt;/text&gt; </code></pre> <p>The XML file is being read correctly, but the problem I'm having is that the <code>text</code> variables don't seem to be working properly.</p> <p>From putting some alert stop-points in to try to debug, I've discovered that this is what's happening:</p> <p>Inside <code>success: function(xml){</code>, the var <code>text</code> can be properly accessed. However, the assignment inside that function to assign a new phrase to text doesn't add it correctly. Inside the <code>success:</code>, I can <code>alert(text['must_be_string'])</code> and get "Must be a string," but when I leave the Ajax call, it always shows "undefined."</p> <p>In case I'm not being clear:</p> <pre><code>var text = new Object(); $.ajax({ type: "GET", url: "includes/xml/languages/" + language + ".xml", dataType: "xml", success: function(xml){ alert(text); // Shows [object Object] $(xml).find('text').each(function(){ text[$(this).attr('id')] = $(this).text(); }); alert(text['must_be_string']); // Shows "Must be a string." } }); alert(text['must_be_string']); // Shows undefined -- this is my problem </code></pre> <p>I would really, really appreciate any help on this. Please explain because I would really like to understand what's going on.</p> http://stackoverflow.com/questions/717823/problems-with-variable-scope-javascript/717828#717828 0 Answer by macaco for Problems with variable scope (JavaScript) macaco 2009-04-04T21:13:50Z 2009-04-04T21:13:50Z <p>Variable 'text' lives in the scope of the 'language' function. I'm not sure how jQuery manages scopes, but I think the success function is a new function that is not inside 'language's scope.</p> <p>'language' ends when reaching return and the ajax query is sent. However, the response comes afterwards (async).</p> <p>Try declaring 'text' object as global, outside 'language'</p> http://stackoverflow.com/questions/717823/problems-with-variable-scope-javascript/717830#717830 4 Answer by bendewey for Problems with variable scope (JavaScript) bendewey 2009-04-04T21:14:18Z 2009-04-04T21:14:18Z <p>The success method of the ajax call is an asynchronous call. When you call <code>$.ajax</code> the method will instantly return and attempt to execute the <code>alert(text['must_be_string']);</code>, which won't be set until after the success of the ajax call is made, some point in the future. </p> <p>Hope this helps.</p>