Removing hand cursor link

G

Guest

Hello All
I have a slide show that currently has the option to link to another page with each image within the slide show. The problem is I do not want the image to have a link at all, but purely require the slide show, without the hand cursor and subsequent link option appearing

Any help would be greatly appreciated

I have this script in the header sectio

<script language="JavaScript1.1"><!-

//rotating image head tex
var slidespeed=200
var slideimages=new Array("images/lincoln_ext.jpg","images/lincoln_control.jpg","images/lincoln_dayroom.jpg"

var imageholder=new Array(
var ie=document.al
for (i=0;i<slideimages.length;i++)
imageholder=new Image(
imageholder.src=slideimages[i



And this in the body

<a href=""><img src="images/lincoln_ext.jpg" name="slide" border=0 style="filter:blendTrans(duration=2)" width=270 height=199></a><script language="JavaScript1.1"><!-

var whichlink=
var whichimage=
var blenddelay=(ie)? document.images.slide.filters[0].duration*1000 :
function slideit()
if (!document.images) retur
if (ie) document.images.slide.filters[0].apply(
document.images.slide.src=imageholder[whichimage].sr
if (ie) document.images.slide.filters[0].play(
whichimag
whichimage=(whichimage<slideimages.length-1)? whichimage+1 :
setTimeout("slideit()",slidespeed+blenddelay

slideit(

//--></script

Thaks for any sugestions

john (london, uk
 
J

Jon Spivey

Hi,
you don't have to link the images to anywhere if you don't want. Just remove
the a tag from this link
<a href=""><img src="images/lincoln_ext.jpg" name="slide" border=0
style="filter:blendTrans(duration=2)" width=270 height=199></a>

so you're left with
<img src="images/lincoln_ext.jpg" name="slide" border=0
style="filter:blendTrans(duration=2)" width=270 height=199>

and that's job done

Jon
Microsoft MVP - FP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top