Quote:
Originally Posted by Dribbles
|
Hi Dribbles,
Not sure how to do it with the meta refresh, but with javascript its pretty easy
Code:
<script type="text/javascript">
var urls = new Array("http://www.******.com/forum/quiz_comics_v1/", "http://www.******.com/forum/quiz_comics_v2/");
function redirect()
{
window.location = urls[Math.floor(urls.length*Math.random())];
}
var temp = setInterval("redirect()", 3000);
</script>
Just enter the Urls in the
Code:
var urls = new Array
Inside the brackets add your urls
Go to here
Code:
var temp = setInterval("redirect()", 3000);
and change the 3000 value (Milliseconds) to more or less remember 1000 milliseconds is 1 second