View Full Version : Random information


cupids90
05-05-2006, 12:26 PM
Hi, I would like to ask if there's a code that allows random marquee scrolling funfacts to be on the site? For e.g, one funfact would look like this:

Name: Evelyn
Comm: PRC
Funfact: I love chocolates!

and scrolls up?

thanks alot :)

G-commer
05-05-2006, 05:41 PM
Try this:
<marquee direction=up id='rands'>
</marquee>
<script type='text/javascript'>
<!--
var info=new Array();
info[0]='Hello World!<br>Put different text here...1';
info[1]='Hello World!<br>Put different text here...2';
info[2]='Hello World!<br>Put different text here...3';
var rand=Math.floor(Math.random()*info.length);
window.onload=function(){document.all['rands'].innerHTML=info[rand]};
//--!>
</script>
Modifying the info array contents however you would like.