Re: Dynamic Tables

Yes,

var dummy=Document.getElementsByTagName("td")

will give you a node list of all the table cells in your document that you
can then access by index.eg

dummy.item(1).firstChild.nodeValue

will give you the string content of the cell.

regards,
Frank

Frank Boumphrey

XML and style sheet info at Http://www.hypermedic.com/style/index.htm
Author: - Professional Style Sheets for HTML and XML http://www.wrox.com
CoAuthor:  XML applications from Wrox Press, www.wrox.com
Author: Using XML on the Web (March)

----- Original Message -----
From: MarXidad <marxidad@idirect.com>
To: Frank Boumphrey <bckman@ix.netcom.com>; <LDu9791924@aol.com>;
<www-html@w3.org>
Sent: Friday, January 22, 1999 9:09 PM
Subject: RE: Dynamic Tables


>> The current WG working group is looking at tables, and it is
>> expected that
>> some thing similar to what you describe will be looked at
>
>Doesn't the DOM address scripting hooks for tables?
>
>

Received on Friday, 22 January 1999 21:39:53 UTC