Ajax call back function scope & chaining Ajax request with callback. - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:56:43Zhttp://stackoverflow.com/feeds/question/593441http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/593441/ajax-call-back-function-scope-chaining-ajax-request-with-callback0Ajax call back function scope & chaining Ajax request with callback.Jace2009-02-27T03:49:10Z2009-02-27T04:45:42Z
<p>Ok. here's the scenario:</p>
<pre><code>function DataFeed(){
function PopulateData()
{
$('div#example').load('http://www.example.com', fxnCallBack);
};
function fxnCallBack()
{
PopulateData();
}
this.activator = function() {
PopulateData();
}
};
var example_obj = new DataFeed;
example_obj.activator();
</code></pre>
<p>In the above code, the ajax .load gets executed once, then callback executes. But the callback doesn't start the ajax function again?</p>
<p>Thanks in advance.</p>
<p>edit- why doesn't it display new line properly -.-</p>
http://stackoverflow.com/questions/593441/ajax-call-back-function-scope-chaining-ajax-request-with-callback/593460#5934601Answer by Luca Matteis for Ajax call back function scope & chaining Ajax request with callback.Luca Matteis2009-02-27T03:58:03Z2009-02-27T04:45:42Z<pre><code>InternalError: too much recursion
</code></pre>
<p>JavaScript engines normally have a max limit in the number of recursions or the time recursive execution may take. Use <strong>setInterval</strong> instead:</p>
<pre><code>function DataFeed() {
var interval;
function PopulateData() {
$('div#example').load('http://www.example.com', function(data) {
if(data == "clear_interval")
interval = clearInterval(interval); // clear the interval
});
}
this.activator = function() {
interval = setInterval(PopulateData, 1000); // run every second
};
}
var example_obj = new DataFeed();
example_obj.activator();
</code></pre>