Does Anyone Know Where I can get Free User Friendly Banner Rotators?

Discussion in 'General Marketing' started by Mommy_Traffic, Aug 3, 2008.

  1. #1
    Hi, I'm looking for Free banner rotators, that are user friendly,
    I have run into, a few that havn't been very user friendly could you direct me to a few that are. Thanks :)
     
    Mommy_Traffic, Aug 3, 2008 IP
  2. n-james

    n-james Well-Known Member

    Messages:
    1,367
    Likes Received:
    70
    Best Answers:
    0
    Trophy Points:
    165
    #2
    I just threw this quickly together, and it should work. I haven't tested it but, it should work for your needs.

    Save the code below as rotator.js

    function randInt(min,max)
    {
         var div = (max - min) + 1
         var randNum = Math.random()
         for (var i = 0; i <= div - 1; i++)
         {
              if (randNum >= i / div && randNum < (i+1) / div)
              {return i + min}
         }
    }
    
    
    var abc = randInt(1,3);
    
    if (abc == 1) {
    
         document.write("<\"ENTER CODE #1 HERE\">");
    
    }
    
    if (abc == 2) {
    
         document.write("<\"ENTER CODE #2 HERE\">");
    
    }
    
    if (abc == 3) {
    
         document.write("<\"ENTER CODE #3 HERE\">");
    
    }
    
    Code (markup):
    When you want to use the banners in certain areas use this:

    <script language="JavaScript" type="text/javascript" src="rotator.js">
    Code (markup):
    Its very easy to add more banners should you wish to do so.

    Disclaimer: By using this script, you accept that I do not take any liability, for anything happening to your website(s)
     
    n-james, Aug 3, 2008 IP
  3. Jalpari

    Jalpari Notable Member

    Messages:
    5,640
    Likes Received:
    137
    Best Answers:
    0
    Trophy Points:
    260
    #3
    Jalpari, Aug 3, 2008 IP
  4. bobkat

    bobkat Peon

    Messages:
    107
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    great code Thanks
     
    bobkat, Aug 3, 2008 IP
  5. mentos

    mentos Prominent Member

    Messages:
    15,280
    Likes Received:
    473
    Best Answers:
    0
    Trophy Points:
    330
    #5
    mentos, Aug 3, 2008 IP