function show_station_title() { $.getJSON('http://ip:port/status-json.xsl?mount=/mount', function(data) { $('.track_title').html(data.icestats.source.title); }) } $(document).ready(function() { show_station_title(); setInterval('show_station_title()', 3000) });
<a href='h t t p : / / адрес сайта/название трека'>название трека</a>
function show_station_title() { $.getJSON('http://ip:port/status-json.xsl?mount=/mount', function(data) { $('.track_title').html('<a href="http://yousite.com/' + data.icestats.source.title + '">' + data.icestats.source.title + '</a>'); }) } $(document).ready(function() { show_station_title(); setInterval('show_station_title()', 3000) });