Iframe Rotator
by Taufik Nurrohman
HTML
<div class="right-iframe-rotation">Loading...</div>
JavaScript
(function($) {
var timer = 0;
var delay = 5000;
var urls = [
"http://mini-web-tools.googlecode.com/svn/p/css-compressor-and-beautifier.html",
"http://hompimpa.googlecode.com/svn/trunk/personal/html-escaper.html"
];
function reLoading() {
$('.right-iframe-rotation').html('<ifr' + 'ame src="' +urls[timer] + '" width="308" height="795" scrolling="no" frameborder="0" allowtransparency="true" marginheight="0" marginwidth="0"></ifr' + 'ame>');
timer = (timer < (urls.length-1)) ? timer+1 : 0;
}
setInterval(reLoading, delay);
})(jQuery);