Here’s a useful bit of javascript, that should help you action multiple web tasks which use the URL query string to past a parameter or two… Simply add your URLs to the “urls” array list and open the HTML file in a web browser.
<div id="count"></div>
<iframe name="ifrm" id="ifrm" src="http://www.jasdev.co.uk" width="90%" height="90%"></iframe>
<script type="text/javascript">
var i = 0;
var urls = new Array();
urls[0] = 'http://www.bbc.co.uk';
urls[1] = 'http://www.bigfanta.com';
urls[2] = 'http://www.bigtango.com';
urls[3] = 'http://www.jasdev.co.uk';
next();
function next() {
if ( window.frames["ifrm"] ) {
window.frames["ifrm"].location = urls[i];
}
setTimeout("next()",3000);
i++;
document.getElementById("count").innerHTML = i+' of '+urls.length;
}
</script>