Since it's possible to add hyperlinks to each image in the slideshow, it must also be possible to have the link URL open in a new browser window. What do I need to add to the script for this to happen? For each link, or only once for all? THANKS.
Since it's possible to add hyperlinks to each image in the slideshow, it must also be possible to have the link URL open in a new browser window. What do I need to add to the script for this to happen? For each link, or only once for all? THANKS.
The way this script is written it is easier to do this for all links, here we go, change:to:Code:tempobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'and this:Code:tempobj.innerHTML='<a href="'+droplinks[curimageindex]+'" target=_blank><img src="'+dropimages[curimageindex]+'" border=0></a>'to:Code:crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'"><img src="'+dropimages[curimageindex]+'" border=0></a>'and this:Code:crossobj.innerHTML='<a href="'+droplinks[curimageindex]+'" target=_blank><img src="'+dropimages[curimageindex]+'" border=0></a>'to:Code:window.location=droplinks[linkindex]Code:window.open(droplinks[linkindex])
Hello.
I have a question. Is it possible, instead of the images sliding downward the images will be sliding from left to right? How do I do that? Please respond. Thank you.
Bookmarks