var get_comm_func = setInterval(function() {
jQuery.ajax({
type: "POST",
url: "https://site.com",
data: {id: id},
success: function(data) {
$('#comment').html('');
$.each(JSON.parse(data), function(key, value){
$('#comment').append('blabla');
});
}
});
}, 30000);