1) :: Presentational Slideshow Script
2) http://www.dynamicdrive.com/dynamici...ationslide.htm
3) how can i disable link to the first drop image?
i have droplinks[0]=""
and the first image only is clickable to homepage?
thank you
1) :: Presentational Slideshow Script
2) http://www.dynamicdrive.com/dynamici...ationslide.htm
3) how can i disable link to the first drop image?
i have droplinks[0]=""
and the first image only is clickable to homepage?
thank you
Find the startit() function:
Replace it with this one:Code:function startit(){ var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas) crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>' rotateimage() }
Code:function startit(){ var crossobj=ie4? eval("document.all."+curcanvas) : document.getElementById(curcanvas) crossobj.innerHTML=(droplinks[curimageindex]? '<a href="'+droplinks[curimageindex]+'">' : '') + '<img src="'+dropimages[curimageindex]+'" border=0>' + (droplinks[curimageindex]? '</a>' : ''); rotateimage() }
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
thank you for your quick response, it worked
Bookmarks