Problems with variable scope (JavaScript) - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:18:59Zhttp://stackoverflow.com/feeds/question/717823http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/717823/problems-with-variable-scope-javascript0Problems with variable scope (JavaScript)Josh Leitzel2009-04-04T21:07:32Z2009-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> <text id="must_be_string">Must be a string.</text>
<text id="must_be_number">Must be a number.</text>
<text id="must_be_integer">Must be an integer.</text>
</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#7178280Answer by macaco for Problems with variable scope (JavaScript)macaco2009-04-04T21:13:50Z2009-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#7178304Answer by bendewey for Problems with variable scope (JavaScript)bendewey2009-04-04T21:14:18Z2009-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>