I have a div that is the target:
<div id="rightbox"></div>
I have thumbnails organized by groups:
<img src="group1/thumb/01.png" width="160" height="97" class="imgtopleft" />
<img src="group1/thumb/02.png" width="160" height="97" class="imgtopright" />
<img src="group2/thumb/01.png" width="160" height="97" class="imgbottomleft" />
<img src="group2/thumb/02.png" width="160" height="97" class="imgbottomright" />
And I have large images corresponding to each of the thumbs:
<img src="group1/large/01.png" width="560" height="297" class="largeimage" />
<img src="group1/large/02.png" width="560" height="297" class="largeimage" />
<img src="group2/large/01.png" width="560" height="297" class="largeimage" />
<img src="group2/large/02.png" width="560" height="297" class="largeimage" />
I want to know if it is possible to display each of the large images when I click on the corresponding thumbnail in the target div (with id = "rightbox") using a function?
. 10 , . , image01_thumb.jpg image01_large.jpg, div.
.
.