
Originally Posted by
Missy
I haven't got the fadeout working yet, I may just choose to use the click method. can you show me script to add, and where to add it so it makes the popup window closeable?
First, take a few deep breaths.
There is no pop-up window with this script. DD already told you where to put the code:

Originally Posted by
DD
. . . the end of the script in the HEAD section:
And, showed you how to use it in his previous post in this thread.

Originally Posted by
Missy
and could you also describe how I would link the :
{<a href="#" onClick="return modifyimage('dynloadarea2', 2)">image 3 (onclick)</a></p>
to a thumbnail inside a table?
It doesn't matter where the thumbnail is (at least not inside or outside of a table). Wherever you put this code (within reason):
Code:
<a href="#" onClick="return modifyimage('dynloadarea2', 2)">image 3 (onclick)</a>
you always have the option of substituting an image tag (green in the below) for the link text (red in the above):
Code:
<a href="#" onClick="return modifyimage('dynloadarea2', 2)"><img src="thumb_3.jpg" border="0"></a>
Bookmarks