Hi,
I am looking to have thumbnails on a website enlarge on mouseover. The web site page I am working on is:
http://www.handsewnchristmas.com/stockings1.htm. On my local drive I can preview it in Firefox 3.0.3 and IE 7 and it works perfect. After I publish the files and go to the web site it does NOT work in either browser. I have only done the FIRST stocking listed on that page and don't want to do any others until I can get it to work properly. Can anyone help? The sever I am uploading to: Apache version 1.3.41 (Unix), Operating system Linux, PHP version 5.2.5. Does the sever need something in order to have this script work?
Thanks for your time and any assistance you can offer.
Donna script below:
This is the script I am using in the head tag:
<script language="JavaScript">
<!--
function FP_swapImgRestore() {//v1.0
var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.le
ngth;i++) {
var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } }
doc.$imgSwaps=null; }
}
function FP_swapImg() {//v1.0
var doc=document,args=argument
s,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
n+=2) { elm=FP_getObjectByID(args[
n]); if(elm) { doc.$imgSwaps[doc.$imgSwap
s.length]=
elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}
function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}
function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n
]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els
[n]); if(el) return el; } }
return null;
}
// -->
</script>
This is the code to load the image in the body tag:
<body onload="FP_preloadImgs(/*u
rl*/'image
s/stocking
s/85176.jp
g')">
Start Free Trial