Ileia wrote:BasharOfTheAges wrote:Ileia wrote:http://www.boochsack.com/watch?v=GSn9nlZC8kM
Everyone watch metro's video so that he can win five grand.
How's that work exactly? Total hit numbers?
Yeah, I think he needs 8 or 9,000.
Ah, well that's simple enough -
- Code: Select all
<html>
<script>
var arrURL=new Array("http://www.youtube.com/watch?v=GSn9nlZC8kM");
var curIndex=0;
var timer=0;
var refreshRate=6; //seconds
function ChangeFrame()
{
clearTimeout(timer);
var url=arrURL[curIndex];
window.open(url, "Frame1");
window.open(url, "Frame2");
window.open(url, "Frame3");
window.open(url, "Frame4");
curIndex = ((curIndex+1)%arrURL.length);
timer = setTimeout("ChangeFrame()", refreshRate*1000);
}
</script>
<iframe></iframe>
<iframe></iframe>
<iframe></iframe>
<iframe></iframe>
<input>
</html>
I think i found a bug with the code button... it doesn't display the stuff within the frame (iframe name="Frame1" id="Frame1" src="about:blank" width="200" height="200") properly. o.o;;



