View Full Version : script for tables?


vicary
05-22-2003, 02:07 AM
also, should have include this in my last post....
Are there any free scripts for tables? I would like to be able to put my images into tables and then have the viewer click the thumbnail and have the larger image open up in a different window...
Is this possible with javascript or is there a different way of doing this?
Thanks.

zangerbanger
05-22-2003, 02:38 AM
I'm pretty sure that you could do that with IFRAMES....

Alcy
05-22-2003, 03:58 AM
You could use simple HTML for that.

There's a table maker here (http://www.bagism.com/tablemaker/).

For the thumbnail, <a href="LARGERIMAGE.GIF" target="_blank"><img src="THUMBNAIL.GIF" border=0></a>

stargrl329
05-24-2003, 04:15 AM
couldn't you do a table and then put in the following code for the image? say your full size image was like 200px wide by 100px tall, couldn't you do this instead of have two images:

<a href="the URL for full size image here"><img src="full size image URL.GIF" width="100" height="50"></a>

or whatever the attributes may be that you want.
That is what i was thinking of doing on one of my pages, would this work too? and then you could just put each of these thumbnails into the table. Just wondering ;)