Help required please. I am using the following Multi image script:
http://www.javascriptkit.com/script/...ultishow.shtml
Is it possible to make clicked slides that link to a unique url open in new window?
Many thanks.

Member Avatar for langsor

I am using the following Multi image script:
http://www.javascriptkit.com/script/...ultishow.shtml

This URL is broken ...

Is it possible to make clicked slides that link to a unique url open in new window?

Yes, it is possible.

no-javascript

<a href="new_window.html" target="blank"><img src="slide.jpg" /></a>

Something like this should work...

javascript

function new_window( url ) {
  var name = window.open(url,'name');
}

corresponding html

<img src="slide.jpg" name="url_for_window.html" onclick="new_window(this.name)" />

This page goes a little more in-depth on this subject -- http://www.pageresource.com/jscript/jwinopen.htm

Cheers

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.