cbennison
11-06-2003, 03:28 AM
have multiple versions of a simple goofy site
would like random loading of homepage on each visit
and on each refresh of only the index.htm page.
have tried a random redirect script such as the one
below, but does not allow for the random refreshing
of a certain page. any suggestions would be greatly
appreciated asap.
many thanks.
<script language="JavaScript"><!--
var item = 0;
var URL = new Array();
URL[item++] = '../../articles.htm';
URL[item++] = '../../index.htm';
function randomJump() {
var random = rand(item) - 1;
location.href = URL[random];
}
//--></script>
would like random loading of homepage on each visit
and on each refresh of only the index.htm page.
have tried a random redirect script such as the one
below, but does not allow for the random refreshing
of a certain page. any suggestions would be greatly
appreciated asap.
many thanks.
<script language="JavaScript"><!--
var item = 0;
var URL = new Array();
URL[item++] = '../../articles.htm';
URL[item++] = '../../index.htm';
function randomJump() {
var random = rand(item) - 1;
location.href = URL[random];
}
//--></script>