I have got a div that is a target:
<div id="rightbox"></div>
I have thumbnail images 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 larger 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 show each of the larger images when the corresponding thumbnail is clicked in the target div (with id="rightbox"), by using a function?
NOTE: I have about 10 groups of thumbnails with corresponding larger images and each is in a specific folder. I can put all the images within the same directory and using different naming conventions such as image01_thumb.jpg and image01_large.jpg, but the bottom line is I would like to be able to open each of the thumbs in the target div.
I have looked all over for this and have not found this exact question answered yet.
All suggestions and help is greatly appreciated.