
Originally Posted by
rogercruz
Thank you Dirt_Diver for answer, im going to post the code that Im using for this proyect.
This is my main html Befofeafter.html:
<td rowspan="2"><a href="images/x/yy.jpg" rel="enlargeimage::mouseover" rev="loadarea" title="This is an example">Thumbnail Example 1</a>
<a href="images/x/xy.jpg" rel="enlargeimage::mouseover" rev="loadarea2" title="This is an example">Thumbnail Example 1</a>
</td>
<td><div id="loadarea" style="width: 500px; height: 300px;"></div></td>
</tr>
<tr>
<td><div id="loadarea2" style="width: 500px; height: 300px;"></div></td>
</tr>
the idea is when the user mouse on over the link Thumbnail Example 1 it will show the image yy.jpg in the div with id: loadarea but also show the image xy.jpg in the div tag with id: loadarea2, right now I have two a tags but I need to now how to do it with just one a tag.
Again thank you for your answer and any help that you can offer will be appreciated.
I checked the page that you send but that is no my problem
Thanks
Roger
You should just be able to change this:
Code:
<td><div id="loadarea2" style="width: 500px; height: 300px;"></div></td>
to this:
Code:
<td><div id="loadarea" style="width: 500px; height: 300px;"></div></td>
If you want 2 different images to come up in the same <div>. That is what you are trying to do right?
Bookmarks