show/hide this revision's text 2 deleted 57 characters in body

Ok. here's the scenario:

function DataFeed()
DataFeed(){

  function PopulateData()
  {
    $('div#example').load('http://www.example.com', ('div#example').load('http://www.example.com', fxnCallBack);
  };

  function fxnCallBack()
  {
    PopulateData();
  }

  this.activator = function() {
    PopulateData();
  }

};

var example_obj = new DataFeed;
example_obj.activator();

In the above code, the ajax .load gets executed once, then callback executes. But the callback doesn't start the ajax function again?

Thanks in advance.

edit- why doesn't it display new line properly -.-

show/hide this revision's text 1

Ajax call back function scope & chaining Ajax request with callback.

Ok. here's the scenario:

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();

In the above code, the ajax .load gets executed once, then callback executes. But the callback doesn't start the ajax function again?

Thanks in advance.

edit- why doesn't it display new line properly -.-