Ajax call back function scope & chaining Ajax request with callback. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:56:43Z http://stackoverflow.com/feeds/question/593441 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/593441/ajax-call-back-function-scope-chaining-ajax-request-with-callback 0 Ajax call back function scope & chaining Ajax request with callback. Jace 2009-02-27T03:49:10Z 2009-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#593460 1 Answer by Luca Matteis for Ajax call back function scope & chaining Ajax request with callback. Luca Matteis 2009-02-27T03:58:03Z 2009-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>