show/hide this revision's text 3 deleted 16 characters in body
InternalError: too much recursion

JavaScript engines normally have a max limit in the number of recursions or the time recursive execution may take. Use setInterval instead:

function DataFeed() {
    this.intervalvar interval;
    function PopulateData() { 
        $('div#example').load('http://www.example.com', function(data) {
            if(data == "clear_interval")
                this.interval interval = clearInterval(this.interval)clearInterval(interval); // clear the interval
        }); 
    }

    this.activator = function() { 
        this.interval interval = setInterval(PopulateData, 1000); // run every second
    };
}
var example_obj = new DataFeed();
example_obj.activator();
show/hide this revision's text 2 added 166 characters in body
InternalError: too much recursion

JavaScript engines normally have a max limit in the number of recursions or the time recursive execution may take. Use setInterval instead:

function DataFeed() {
    this.interval;
    function PopulateData() { 
        $('div#example').load('http://www.example.com'); 
    ('div#example').load('http://www.example.com', function(data) {
            if(data == "clear_interval")
                this.interval = clearInterval(this.interval); // clear the interval
        }); 
    }

    this.activator = function() { 
        this.interval = setInterval(PopulateData, 1000); // run every second
    };
}
var example_obj = new DataFeed();
example_obj.activator();
show/hide this revision's text 1
InternalError: too much recursion

JavaScript engines normally have a max limit in the number of recursions or the time recursive execution may take. Use setInterval instead:

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

    this.activator = function() { 
        setInterval(PopulateData, 1000); // run every second
    };
}
var example_obj = new DataFeed();
example_obj.activator();