function updateShow(){ jQuery(document).ready(function ($) { $.getJSON('https://broadcast.truthcdn.com/play-currentshow.lasso?station=WLES', function (data) { $('.showName').html(data.name); $('.showLink').attr("href",("/show/" + data.slug +"/")); $('.showHost').html(data.host); $('.showDesc').html(data.description); $('.showIMG').attr("src",data.imgurl); $('.showMorePic').attr("href",("/show/" + data.slug +"/")); // the description is clamped to 10 lines in css - only offer "More" when // there is actually something hidden below the fold $('.showDesc').each(function() { var clipped = this.scrollHeight > this.clientHeight + 2; $(this).nextAll('.showMoreWrap').first().toggle(clipped); }); }); }); }; updateShow(); setInterval(function(){ updateShow(); }, 5000 );