I was able to figure it out and I changed the code where it worked fine in Dreamweaver and all the browsers. Here is the new code:
Code:
/***********************************************
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["http://gemcapsolutions.com/1.jpg", "", ""]
fadeimages[1]=["http://gemcapsolutions.com/2.jpg", "", ""]
fadeimages[2]=["http://gemcapsolutions.com/3.jpg", "", ""]
fadeimages[3]=["http://gemcapsolutions.com/animal1.jpg", "", ""]
fadeimages[4]=["http://gemcapsolutions.com/5.jpg", "", ""]
fadeimages[5]=["http://gemcapsolutions.com/6.jpg", "", ""]
fadeimages[6]=["http://gemcapsolutions.com/7.jpg", "", ""]
fadeimages[7]=["http://gemcapsolutions.com/8.jpg", "", ""]
fadeimages[8]=["http://gemcapsolutions.com/9.jpg", "", ""]
fadeimages[9]=["http://gemcapsolutions.com/10.jpg", "", ""]
fadeimages[10]=["http://gemcapsolutions.com/11.jpg", "", ""]
fadeimages[11]=["http://gemcapsolutions.com/12.jpg", "", ""]
fadeimages[12]=["http://gemcapsolutions.com/13.jpg", "", ""]
fadeimages[13]=["http://gemcapsolutions.com/animal2.jpg", "", ""]
fadeimages[14]=["http://gemcapsolutions.com/15.jpg", "", ""]
fadeimages[15]=["http://gemcapsolutions.com/16.jpg", "", ""]
fadeimages[16]=["http://gemcapsolutions.com/17.jpg", "", ""]
fadeimages[17]=["http://gemcapsolutions.com/18.jpg", "", ""]
fadeimages[18]=["http://gemcapsolutions.com/19.jpg", "", ""]
fadeimages[19]=["http://gemcapsolutions.com/20.jpg", "", ""]
fadeimages[20]=["http://gemcapsolutions.com/21.jpg", "", ""]
fadeimages[21]=["http://gemcapsolutions.com/22.jpg", "", ""]
fadeimages[22]=["http://gemcapsolutions.com/23.jpg", "", ""]
But then after uploading it via ftp remote server and clearing my cache it shows up in the source code as the old code that with all the syntax code. Like so:
Code:
/***********************************************
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["10.jpg", "", ""] //image with link syntax
fadeimages[1]=["13.jpg", "", ""] //image with link syntax
fadeimages[2]=["11.jpg", "", ""] //image with link and target syntax
fadeimages[3]=["7.jpg", "", ""] //plain image syntax
fadeimages[4]=["6.jpg", "", ""] //image with link syntax
fadeimages[5]=["animal1.jpg", "", ""] //image with link syntax
fadeimages[6]=["16.jpg", "", ""] //image with link and target syntax
fadeimages[7]=["22.jpg", "", ""] //plain image syntax
fadeimages[8]=["18.jpg", "", ""] //image with link syntax
fadeimages[9]=["19.jpg", "", ""] //image with link and target syntax
fadeimages[10]=["20.jpg", "", ""] //plain image syntax
fadeimages[11]=["21.jpg", "", ""] //image with link syntax
fadeimages[12]=["25.jpg", "", ""] //image with link and target syntax
fadeimages[13]=["animal2.jpg", "", ""] //plain image syntax
fadeimages[14]=["1.jpg", "", ""] //image with link and target syntax
fadeimages[15]=["2.jpg", "", ""] //plain image syntax
fadeimages[16]=["3.jpg", "", ""] //image with link syntax
fadeimages[17]=["8.jpg", "", ""] //image with link and target syntax
fadeimages[18]=["9.jpg", "", ""] //plain image syntax
fadeimages[19]=["4.jpg", "", ""] //image with link syntax
fadeimages[20]=["animal6.jpg", "", ""] //image with link and target syntax
fadeimages[21]=["12.jpg", "", ""] //plain image syntax
fadeimages[19]=["15.jpg", "", ""] //image with link syntax
fadeimages[20]=["23.jpg", "", ""] //image with link and target syntax
fadeimages[21]=["5.jpg", "", ""] //plain image syntax
fadeimages[22]=["17.jpg", "", ""] //plain image syntax
Really weird.
Bookmarks