// Get current song function NowPlaying(){ $.ajax({ url: "http://149.255.59.3:8075/currentsong?sid=1", type: "GET", success: function(result) { $("#playing").html(result); } }); } // Update every 5 seconds setInterval(function(){ NowPlaying(); }, 5000);