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.
31 lines
457 B
31 lines
457 B
function show()
|
|
{
|
|
$.ajax({
|
|
url: '../trackname.php',
|
|
cache: false,
|
|
success: function(html){
|
|
$('#title').html(html);
|
|
}
|
|
});
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
show();
|
|
setInterval('show()',5000);
|
|
});
|
|
|
|
function show1()
|
|
{
|
|
$.ajax({
|
|
url: '../online.php',
|
|
cache: false,
|
|
success: function(html){
|
|
$('#listeners').html(html);
|
|
}
|
|
});
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
show1();
|
|
setInterval('show1()',5000);
|
|
});
|
|
|