View Single Post
Old 01-02-2009, 07:11 AM   PM User | #2
rangana
Senior Coder

 
rangana's Avatar
 
Join Date: Feb 2008
Location: Cebu City, Philippines
Posts: 1,752
Thanks: 65
Thanked 372 Times in 365 Posts
rangana will become famous soon enoughrangana will become famous soon enough
Code:
<script type="text/javascript">
/** 
* Copyright 2002 Bontrager Connection, LLC
* Modified @ codingforums.com by rangana on this thread: http://codingforums.com/showthread.php?t=155309
* Ability to add a separate URL to each image
*/

// Initialize the links you like to use - should match on the NumberOfImagesToRotate var
links=['http://www.link1.com','http://www.link2.com'];

// Type the number of images you are rotating.
NumberOfImagesToRotate = 2;

// Specify the first and last part of the image tag. 
FirstPart = '<img src="images/ads/side';
LastPart = '.jpg" height="151" width="222">';

function printImage() {
var r = Math.ceil(Math.random() * NumberOfImagesToRotate);
document.write('<a href="'+links[r-1]+'">' + FirstPart + r + LastPart + '</a>');
}
</script>
__________________
Learn how to javascript at 02geek

The more you learn, the more you'll realize there's much more to learn
Ray.ph
rangana is offline   Reply With Quote
Users who have thanked rangana for this post:
Joemoemofo (01-03-2009)