Switch between images

J

John

I´m trying to find out how to switch between an image by a mouseclick.

The function should check if the image is on or off but it doesn´t work.
What´s wrong?

Below the script.

start_on = new Image;
start_on.src = "images/start_on.jpg";
start_off = new Image;
start_off.src = "images/start_off.jpg";

function switch(image) {
document.images[image].src = (document.images[image].src.indexOf("_off")==-1)? eval(image + "_off.src"); eval(image + "_on.src")
}

<img border="0" name="start" src="images/start_on.jpg" onClick="switch('start')">



Thanks


John

http://members.home.nl/jpeskens
 
J

Janwillem Borleffs

"John" <[email protected]> schreef in bericht I´m trying to find out how to switch between an image by a mouseclick.

The function should check if the image is on or off but it doesn´t work.
What´s wrong?

document.images[image].src =
(document.images[image].src.indexOf("_off")==-1) ?
image + "_off.src" : image + "_on.src";

JW
 
J

Janwillem Borleffs

Janwillem Borleffs said:
document.images[image].src =
(document.images[image].src.indexOf("_off")==-1) ?
image + "_off.src" : image + "_on.src";

Error, sorry. Should be:

document.images[image].src =
(document.images[image].src.indexOf("_off")==-1) ?
start_off.src : start_on.src;


JW
 
J

John

Hoi Janwillem,


Ik heb het al gezien. Het lag aan de puntkomma. Moet een dubbele punt zijn.

Bedankt in ieder geval



John

htpp://members.home.nl/jpeskens


Janwillem Borleffs said:
Janwillem Borleffs said:
document.images[image].src =
(document.images[image].src.indexOf("_off")==-1) ?
image + "_off.src" : image + "_on.src";

Error, sorry. Should be:

document.images[image].src =
(document.images[image].src.indexOf("_off")==-1) ?
start_off.src : start_on.src;


JW
 

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

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top