switch pic?

R

roN

Hi,

I have 3 small images and 3 big images, i would like to display the big one,
when the small one is clicked, I tried:
[js]
IA1 = new Image();
IA1.src = "./images/IA-demo-big_1.jpg"; /* first big IA image */
IA2 = new Image();
IA2.src = "./images/IA-demo-big_2.jpg"; /* second big IA image */
IA3 = new Image();
IA3.src = "./images/IA-demo-big_3.jpg"; /* third big IA image */
function switchpic(pic)
{
window.document.images['big'].src = IA[pic].src;
}
[/js]
HTML:
<td width="23%"><a href="#"
OnClick="switchpic(1)"><img src="images/IA-demo-small_1.jpg" width="63"
height="95" border="0"></a></td>
<td colspan="3" rowspan="3"><img
src="images/IA-demo-big_3.jpg" name="big" width="193" height="290"></td>
</tr>
<tr>
<td><a href="#" OnClick="switchpic(2)"><img
src="images/IA-demo-small_2.jpg" width="63" height="95"
border="0"></a></td>
</tr>
<tr>
<td><a href="#" OnClick="switchpic(3)"><img
src="images/IA-demo-small_3.jpg" width="63" height="95"
border="0"></a></td>
</tr>

but it wouldn't work, why not?
I'd appreciate your help!
Thank you!
 
R

Randy Webb

roN said the following on 5/20/2006 5:08 PM:
Hi,

I have 3 small images and 3 big images, i would like to display the big one,
when the small one is clicked, I tried:
[js]
IA1 = new Image();
IA1.src = "./images/IA-demo-big_1.jpg"; /* first big IA image */
IA2 = new Image();
IA2.src = "./images/IA-demo-big_2.jpg"; /* second big IA image */
IA3 = new Image();
IA3.src = "./images/IA-demo-big_3.jpg"; /* third big IA image */
function switchpic(pic)
{
window.document.images['big'].src = IA[pic].src;
}

IA is not an array so you can't access it like that. Either make IA an
array or use window['IA' + pic].src;
 

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

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,046
Latest member
Gavizuho

Latest Threads

Top