HighDots Forums  

Random Link

Javascript JavaScript language (comp.lang.javascript)


Discuss Random Link in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Global_Killa
 
Posts: n/a

Default Random Link - 05-12-2004 , 11:41 AM






Hey all,
I'm new to java script, and really don't know anything about it. I'm
looking to have a random link shown on my site. I want the link to be chosen
from a list of about 10 links.
How would I go about this? I found this piece of code, but this only allows
two links. Does anyone know how to expand on this to add 10 or more?

<script type="text/javascript">
var r=Math.random()
if (r>0.5)
{
document.write("<a href='http://www.w3schools.com'>Learn Web
Development!</a>")
}
else
{
document.write("<a href='http://www.refsnesdata.no'>Visit Refsnes
Data!</a>")
}
</script>

Thanks for any help,

--
Global_Killa
"You're a victim of the rules you live by!"



Reply With Quote
  #2  
Old   
Ivo
 
Posts: n/a

Default Re: Random Link - 05-12-2004 , 12:04 PM






"Global_Killa" wrote
Quote:
I'm new to java script, and really don't know anything about it. I'm
looking to have a random link shown on my site. I want the link to be
chosen
from a list of about 10 links.
How would I go about this? I found this piece of code, but this only
allows
two links. Does anyone know how to expand on this to add 10 or more?

snip
There are many ways to do this. Close to your original code, but allowing
for an arbitrary number of links, is this:

thelinks=['www.yahoo.com/','www.google.com/','www.c.com/','www.d.com/'];
thetexts=['Yahoo','Google','c','d'];
a=Math.floor(thelinks.length*Math.random());
document.write('<a href="http://'+thelinks[a]+'">'+thetexts[a]+'</a>');

It should be mostly self-explanatory, if it isn't, let us know.
HTH
Ivo





Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.