Sice,
setInterval(function() {
$('#main').load(window.location.href + ' #main', function() {
$('#main .myPopover').popover({
html: true,
content: function() {
var elementId = $(this).attr("data-popover-content");
return $(elementId).html();
}
});
}
)
}, 10000)