|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Can someone please help with this.
I want to know if there is any possible way that when the link is selected/clicked it would open in a blank window and not in the window it's in.
__________________________________________________ ______________ Script <SCRIPT LANGUAGE="JavaScript"> <!-- Original: Robert Bui (astrogate@hotmail.com) --> <!-- Web Site: http://astrogate.virtualave.net --> <!-- This script and many more are available free online at --> <!-- The JavaScript Source!! http://javascript.internet.com --> <!-- Begin var interval = 2.5; // delay between rotating images (in seconds) var random_display = 1; // 0 = no, 1 = yes interval *= 1000; var image_index = 0; var link_index = 0; image_list = new Array(); link_list = new Array(); image_list[image_index++] = new imageItem("http://javascript.internet.com/img/image-cycler/01.jpg"); image_list[image_index++] = new imageItem("http://javascript.internet.com/img/image-cycler/02.jpg"); image_list[image_index++] = new imageItem("http://javascript.internet.com/img/image-cycler/03.jpg"); image_list[image_index++] = new imageItem("http://javascript.internet.com/img/image-cycler/04.jpg"); link_list[link_index++] = "http://www.something.com"; link_list[link_index++] = "http://www.somethingelse.com"; link_list[link_index++] = "http://www.anotherthing.com"; link_list[link_index++] = "http://www.ohlook, number 4.com"; var number_of_image = image_list.length; function imageItem(image_location) { this.image_item = new Image(); this.image_item.src = image_location; } function get_ImageItemLocation(imageObj) { return(imageObj.image_item.src) } function generate(x, y) { var range = y - x + 1; return Math.floor(Math.random() * range) + x; } function getNextImage() { if (random_display) { image_index = generate(0, number_of_image-1); } else { image_index = (image_index+1) % number_of_image; } var new_image = get_ImageItemLocation(image_list[image_index]); return(new_image); } function rotateImage(place,anchor) { var new_image = getNextImage(); document[place].src = new_image; document.getElementById("rLink").href = link_list[image_index]; var recur_call = "rotateImage('"+place+"')"; setTimeout(recur_call, interval); } // End --> </script> </HEAD> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY OnLoad="rotateImage('rImage','rLink')"> <!-- STEP THREE: Copy this code into the BODY of your HTML document --> <center> <a id="rLink" href=""> <img name="rImage" src="http://javascript.internet.com/img/image-cycler/01.jpg" width=120 height=90> </a> </center> <p><center> <font face="arial, helvetica" size="-2">Free JavaScripts provided<br> by <a href="http://javascriptsource.com">The JavaScript Source</a></font> </center><p> <!-- Script Size: 2.29 KB --> |
|
#2
|
|||
|
|||
|
RE: Can someone please help with this.
instert target="_blank" into your <a> tag.
This should be in Client Side Things, though. |
|
#3
|
|||
|
|||
|
RE: Can someone please help with this.
Where is the client side?
But if you can help me a little further I would greatly apreciate it. I dont knowwhere to insert it. Can you tell me where the <a> tag is? |
|
#4
|
|||
|
|||
|
RE: Can someone please help with this.
alrighty...
lets see... towards the bottom you have a line that says: Code:
<a id="rLink" href=""> change that to: Code:
<a id="rLink" href="" target="_blank"> And that should do it for you. |
|
#5
|
|||
|
|||
|
RE: Can someone please help with this.
Thanks so much! worked great!
|
|
#6
|
|||
|
|||
|
Message Moved
Thread moved from 'PHP Coding' to 'Client Side Things' by nawlej.
Reason: |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Can someone please help with this. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|