View Single Post
Old 2006-12-20, 08:39 PM   #1
bustherh
If something goes wrong at the plant, blame the guy who can't speak English
 
Join Date: Mar 2006
Posts: 30
Arrow

Quote:
Originally Posted by jonnydoe View Post
Is there anything that is good at rotating text links? I know that Comus will do it but that is more complex than what I need at this point. All I want to do is mix links up on a daily basis...don't even need a databse at this point forthis project. Thanks
You can do that with a simple javascript.

Code:
 <SCRIPT LANGUAGE="Javascript"><!--

function banner() {
};

banner = new banner();
number = 0;

// bannerArray
banner[number++] = "<a href='http://www.wildpornreviews.com/mov/wildpornpass.com/3/025/MTA0NTEzOjM6NjU' target='_blank'>FREE MOVIES</a>"
banner[number++] = "<a href='http://www.wildpornreviews.com/mov/wildpornpass.com/10/070/MTA0NTEzOjM6NjU' target='_blank'>FREE MOVIES</a>"
banner[number++] = "<a href='http://www.wildpornreviews.com/mov/wildpornpass.com/2/081/MTA0NTEzOjM6NjU' target='_blank'>FREE MOVIES</a>"

// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(banner[increment]);

//--></SCRIPT>

add as many links as you need and you can use images as well.
bustherh is offline   Reply With Quote