Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

complex-ish table

Status
Not open for further replies.

hexwood

Technical User
Mar 8, 2002
4
CA
so my reference for this question is andyhopp.com
and my question is: how does he get the things to open in that one cell of the table while all the others remain unchanged, kinda like a frame set, but its only a table, right? is it opening the whole table over and over again?
i rather like this style of layout so if anyone can give some insight as to whats going on and where i can learn it, i would much appreciate it
thanks
 
its just an image sometimes i just cant take it...then i realize its already to late
 
Hi hexwood,

You can find out for yourself. Just do some "Right click- View source"

This is the cell the pictures are viewed in:
<td width=&quot;470&quot; height=&quot;371&quot; colspan=&quot;8&quot; rowspan=&quot;5&quot; valign=&quot;top&quot;><A HREF=&quot;javascript:myslideshowobj.next()&quot; onMouseOver=&quot;window.status='Click to view';return true&quot; onMouseOut=&quot;window.status=' ';return true&quot;><img src=&quot;Bones/bones01.jpg&quot; border=&quot;0&quot; NAME=myslideshowimg height=&quot;371&quot; width=&quot;470&quot;></A></td>

here is the javascript that creates the object and fills it with the images:
// Configure the slideshow object

myslideshowobj = new slideshow(&quot;myslideshowobj&quot;)
myslideshowobj.timeout = 3000
myslideshowobj.add_slide(&quot;Bones/bones01.jpg&quot;, &quot;#&quot;)
myslideshowobj.add_slide(&quot;Bones/bones27.jpg&quot;, &quot;#&quot;)
myslideshowobj.add_slide(&quot;Bones/bones28.jpg&quot;, &quot;#&quot;)
myslideshowobj.add_slide(&quot;Bones/bones02.jpg&quot;, &quot;#&quot;)
myslideshowobj.add_slide(&quot;Bones/bones26.jpg&quot;, &quot;#&quot;)
myslideshowobj.add_slide(&quot;Bones/bones03.jpg&quot;, &quot;#&quot;)
........

and here is the javascript that defines the place in the tabel{<IMG>-tag) the image should be placed: NAME=myslideshowimg
// Start the slideshow

if (document.images)
{
myslideshowobj.set_image( document.images.myslideshowimg )
}

FJI: The most of this javascript is (I think) generated by Macromedia Dreamweaver

Hope this helps you in the right direction,
Erik <!-- My sport: Boomerang throwing !!
This year I will participate at the World Championships in Germany. (!! Many Happy Returns !! -->
 
thanks boomerang
i did check out the source
but i must have scrammed through it too fast
 
no i didn't make the site
i was just wondering how it was done
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top