This nearly works! Thank you so much. However, there seems to be a timing issue. When I step through it with the debugger, it almost works (for some reason it shows/hides the next frame instead of the current), but when I just let it run on its own, it does not work. I.e. for 14 frames, starting at frame 1 if i go through the debugger, if frame1 is offline then it will hide frame2. If frame2 is offline it will hide frame3, and so on. However, if i exit the debugger and just let it run, it hides and shows nothing. I’m guessing this is all the same timing issue, but I don’t know how to go about fixing it…
<script src="jquery.js"></script>
<script>
window.setInterval("reloadFrame();", 7000);
function reloadFrame() {
for (var i=1;i<=14;i++){
var nm = 'frame' + i;
var e = document.getElementById(nm).attributes[4].nodeValue;
e = e.split("/");
e = e[e.length-2];
var ur = 'https://api.twitch.tv/kraken/streams/' + e;
$.ajax({
url: ur,
dataType: 'jsonp',
type: 'get',
success: function(data) {
if(data.stream === null) {
document.getElementById(nm).style.width = '0px';
} else {
document.getElementByID(nm).style.width = '160px';
document.getElementById(nm).src += '';
}
}
});
}
}
</script>
<center><iframe id="frame1" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/fml_seksi/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame2" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/FFAMastersleague/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame3" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/whiteandnerdyyy/" style="border:none" scrolling="no" height="52px" width="160px" ></iframe></iframe><iframe id="frame4" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/jasonkrav_/" style="border:none" scrolling="no" height="52px" width="160px"></iframe><iframe id="frame5" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/warchiefrich/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame6" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/kalipson/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame7" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/pradogo/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame8" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/starshapedsthlm/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame9" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/roxkisabver/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame10" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/sqktgw/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame11" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/rmmasaa/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame12" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/cheeron/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame13" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/njw0819/" style="border:none" scrolling="no" height="52px" width="160px"></iframe></iframe><iframe id="frame14" src="http://streambadge.com/twitch/custom/2B2B2B/FFBF00/FFBF00/jehu54/" style="border:none" scrolling="no" height="52px" width="160px"></iframe>
</center>