PDA

View Full Version : Show table


John.atchison
03-09-2003, 06:12 PM
Hi I have just come across this forum and hope that someone out there can help me.

I am developing a site which has several thumbnail images in seperate cells of a table with a main cell in the centre. This cell has a seperate table with dynamic text which shows on entry to the page. When the images are moused over this table is replaced by a larger version of the thumbnail. This part all works fine what I am unable to work out is how to go back to the original table with the text when I mouse over a different image.
I am using the following to show the larger image
onMouseOver="document.getElementById().innerHTML=''

Can anyone please point me in the right direction

Thanks in anticipation

John

scroots
03-09-2003, 06:28 PM
onMouseOut="document.getElementById().innerHTML=''"

just put it next to your mouseover tag the same way you would normally do.

scroots

John.atchison
03-09-2003, 06:44 PM
Thanks Scroots for your quick reply.
I have that already next to MouseOver with the same info in the innerHTML'' part so that the image remains on mouse out. If I remove this info the image disappears and I am left with a blank cell, no table. I would like the table to restore from a seperate image.

Thanks

John