Merge pull request #2 from InsanusMokrassar/patch-1

Update radio.js
This commit is contained in:
Alex
2020-03-30 14:21:23 +03:00
committed by GitHub

View File

@@ -7,15 +7,6 @@ function show()
$('#title').html(html);
}
});
}
$(document).ready(function(){
show();
setInterval('show()',5000);
});
function show1()
{
$.ajax({
url: '../online.php',
cache: false,
@@ -25,7 +16,9 @@ function show1()
});
}
$(document).ready(function(){
show1();
setInterval('show1()',5000);
});
$(document).ready(
() => {
show();
setInterval(show, 5000);
}
);