
Originally Posted by
IllustriousLyts
thanks so much :] but how can i make the random picture a different link as well as a different pic. like she has
www.swimchick.net she has her affiliates button(pic) change when u refresh the page and the link changes with it. how would i do that?
You can make up a second array for the links:
Code:
//Set Your Images in the below Array:
var robin_im=['files/1_side.jpg', 'files/2_side.jpg', 'files/3_side.jpg', 'files/5_side.jpg', 'files/8_side.jpg']
//Set Your Links in the below Array:
var robin_lnk=['http://www.google.com', 'http://www.msn.com', 'http://www.yahoo.com', 'http://www.dynamicdrive.com', 'http://www.m-w.com']
//////////////// Stop Editing //////////////////
and add in code to use it here:
Code:
document.write('<a href="'+robin_lnk[num]+'" target="_blank"><img src="'+robin_im[num]+'" border="0"><\/a>');
Bookmarks