You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
404 B
29 lines
404 B
5 years ago
|
function show()
|
||
|
{
|
||
|
/*
|
||
|
// php-scrip exec mpc current command
|
||
|
$.ajax({
|
||
|
url: '../trackname.php',
|
||
|
cache: false,
|
||
|
success: function(data){
|
||
|
$('#title').html(data);
|
||
|
}
|
||
|
}); */
|
||
|
|
||
|
$.ajax({
|
||
|
url: '../online.php',
|
||
|
cache: false,
|
||
|
success: function(html){
|
||
|
$('#listeners').html(html);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}
|
||
|
|
||
|
$(document).ready(
|
||
|
() => {
|
||
|
show();
|
||
|
setInterval(show, 5000);
|
||
|
}
|
||
|
);
|