<div id="countries"></div>
setInterval(function(){
$('#countries').empty();
$.getJSON('http://www..........com/objects/<?=$file_json[0]["object_files"];?>', function(data) {
$.each(data, function(key, val) {
if(key=="success"){key="";}
if(val==null){val="Успешный проход";}
$('#countries').append(key + val);
$('#countries').append('<br>');
});
});
}, 1000);
setInterval(function(){
$('#countries').empty();
$.getJSON('http://www..........com/objects/<?=$file_json[0]["object_files"];?>', function(data) {
let result = ''
$.each(data, function(key, val) {
if(key=="success"){key="";}
if(val==null){val="Успешный проход";}
result = result + key + val + '<br>';
});
$('#countries').append(result)
});
}, 1000);