Connecting Tech Pros Worldwide Forums | Help | Site Map

Click Photo Carousel into new frame

Newbie
 
Join Date: Sep 2006
Posts: 24
#1: Oct 12 '09
I have been trying to adapt the photo carousel script located at --

http://www.dynamicdrive.com/dynamicindex14/carousel.htm

to open a new page in another frame located directly below the clickable
carousel frame photos. I know that the basic script to do this is as in --

<a href="http://www.example.org/" target="bottom">Click</a>

but I cannot figure out how to modify the script from
the program given below to do that.

How and where do I insert the .... target="bottom".... to make it do this?

Expand|Select|Wrap|Line Numbers
  1. Car_Image_Sources=new Array(
  2.         "photo1.jpg","http://www.dynamicdrive.com",
  3.         "photo2.jpg","http://www.javascriptkit.com",
  4.         "photo3.jpg","", //this slide isn't linked
  5.         "photo4.jpg","http://www.codingforums.com" // NOTE No comma after last line
  6.         );
View the carousel and entire script at the above website.
Thanks for any help.

Dormilich's Avatar
Moderator
 
Join Date: Aug 2008
Location: Leipzig, Germany
Posts: 3,653
#2: Oct 12 '09

re: Click Photo Carousel into new frame


Quote:

Originally Posted by jrsjrs View Post

How and where do I insert the .... target="bottom".... to make it do this?

in the function that defines the link*. although that means that you have to change the script.

* – C_LdLnk()
Reply