Update radio.js

master
InsanusMokrassar 5 years ago committed by GitHub
parent 56e60dc115
commit 23334e6ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      js/radio.js

@ -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);
}
);

Loading…
Cancel
Save