jQuery(function($) {
function reload() {
$.ajax('/path/to/the/script/which/generate/content/page', {
cache: false,
dataType: 'html',
success: function(html) {
$('#content').empty();
$('#content').append(html);
window.setTimeout(reload, 2000);
}
});
}
reload();
});