Quote:
Originally Posted by jonnydoe
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.