Try a search at http://www.planetsourcecode.com.
Printable View
Try a search at http://www.planetsourcecode.com.
The first step is to find a random number generator script thingy... :p
Then you need a list of links.
Then you make a script to randomly choose a link from the list.
Easy.
:)
Try this
Code:<HTML><HEAD>
<script language=javascript>
var url=new Array("http://www.vbforums.com/showthread.php?s=&threadid=147764", "http://www.vbforums.com/showthread.php?s=&threadid=147765","http://www.vbforums.com/showthread.php?s=&threadid=147767", "http://www.vbforums.com/showthread.php?s=&threadid=147768", "http://www.vbforums.com/showthread.php?s=&threadid=147769", "http://www.vbforums.com/showthread.php?s=&threadid=147781", "http://www.vbforums.com/showthread.php?s=&threadid=147782")
</script>
<script>
<!--
// The Central Randomizer 1.3 (C) 1997 by Paul Houle ([email protected])
// See: http://www.msc.cornell.edu/~houle/Ja...andomizer.html
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
function rnd() {
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};
function rand(number) {
return Math.ceil(rnd()*number);
};
// end central randomizer. -->
</script>
<head>
<body>
<script lanugage=javascript>
var i
i=rand(url.length) -1
document.write("<a href='" + url[i] + "'>" + url[i] + "</a><br>")
</script>
</BODY></HTML>