I am loading output from now_playing.php
(shoutcast now playing content) using a jQuery include ajax call, as sugested here, and it works well.
My code:
<script>
$(function(){
$("#now_playing").load("now_playing.php");
});
</script>
<div id="now_playing"></div>
I just need that div output content updated every 5 seconds or so. Which code can i add to script or div part for that? Thank you!