Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > Javascript / Java Applets

Javascript / Java Applets Are you a JavaScript guy? Do you need help with JavaScript? This is the place to talk about anything related to Java.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-11-2009, 09:56 AM
Sonyman1 Sonyman1 is offline
Junior Member
 
Join Date: Mar 2009
Posts: 3
Default JavaScript source code for banner rotator for my sites on my hosting

I need a banner rotator code written in JavaScript. Can someone give to me a short and simple code which can be easy integrated on my hosted sites?
Reply With Quote
  #2  
Old 06-11-2009, 10:46 AM
600gshr 600gshr is offline
Member
 
Join Date: Jan 2009
Posts: 92
Default Re: JavaScript source code for banner rotator for my sites on my hosting

Create a rotator.js file with following content:
HTML Code:
banners=new Array()
banners[1]='http://www.URL-1A,www.URL-1B'
banners[2]='http://www.URL-2A,www.URL-2B'
banners[3]='http://www.URL-2A,www.URL-2B'
for(i=0;i<1;i++){
ppo=Math.round((banners.length-1)*Math.random())
if(typeof Array().splice=='function'){
current_banner=banners.splice(ppo,1)
} else{current_banner=banners[ppo]}
current_banner=current_banner.toString()
current_banner=current_banner.split(',')
document.writeln('<a href="http://'+current_banner[1]+'"><img src="'+current_banner[0]+'" alt="" width="125" height="125" border="0"></a>')
}
Where in banners [1] the first link(http: //www.URL-1A) refers to the image and the second(www. URL-1B) is link.
width="125" height="125" - These are the dimensions of the banner
Use this line to include a banner rotator in the index file:
HTML Code:
<script type="text/javascript" src="rotator.js"></script>
Reply With Quote
Reply

Tags
banner, code, hosting, javascript, rotator, sites, source

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 03:31 PM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.