Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Banner Rotation Script

Status
Not open for further replies.

WintersMystic

Programmer
Aug 8, 2001
39
US
can somone tell me why this errors out after the second banner is shown and it tries to load the next? all images are in the images dir. the first two banners show, then after the second it errors.

error msg: line 1 char 1 object expected.

Code:
<script language=&quot;JavaScript&quot;>
var bannerArray = new Array();
var myCount=0;
bannerArray[0] = &quot;<A HREF=[URL unfurl="true"]http://www.americanexpress.com/homepage/mt_personal.shtml><IMG[/URL] SRC=/images/amex3.gif border=0></A>&quot;;

bannerArray[1] = &quot;<A HREF=[URL unfurl="true"]http://www.rmhc.com><IMG[/URL] SRC=/images/rmh.gif border=0></A>&quot;;

bannerArray[2] = &quot;<A HREF=[URL unfurl="true"]http://dynowater.com><IMG[/URL] SRC=/images/DynoReg.jpg border=0></A>&quot;;

bannerArray[3] = &quot;<A HREF=[URL unfurl="true"]https://www.teamfordracing.com><IMG[/URL] SRC=/images/FordRacing.gif border=0></A>&quot;;

bannerArray[4] = &quot;<A HREF=[URL unfurl="true"]http://java.sun.com><IMG[/URL] SRC=[URL unfurl="true"]http://java.sun.com/images/logos/javalogo52x88.gif[/URL] border=0></A>&quot;;

bannerArray[5] = &quot;<A HREF=[URL unfurl="true"]http://pbstables.com><IMG[/URL] SRC=images/wookie2.gif border=0></A>&quot;;

bannerRotate();
function bannerRotate() {
document.write(bannerArray[myCount]);
setTimeout(&quot;bannerRotate()&quot;, 3000);
myCount++;
}
</script>
 
Hello,

I'm not sure this is the problem but i would try to add a backslash before a slash in a variable.For example the first on:
Code:
bannerArray[0] = &quot;<A HREF=http:\/\/[URL unfurl="true"]www.americanexpress.com/homepage\/mt_personal.shtml><IMG[/URL] SRC=\/images\/amex3.gif border=0><\/A>&quot;;
My site: msn/email: matthiasdeschagt@hotmail.com
icq: 123118841
online
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top