Help needed with HTML table

liunx

Guest
Hi!<br />
<br />
I am creating a web site that utilises HTML tables. I have two tables. One table contains a javascript tree. This tree contains different links. My requirement is that when I click a node of that tree, the link should open in the second table. Basically, both the tables are inside the cells of another table. Something like this<br />
<br />
<table><!--content-->A little bit more of the table please :)<!--content-->From the HTML 4.01 Specification:<br />
Tables should not be used purely as a means to layout document content as this may present problems when rendering to non-visual media. Additionally, when used with graphics, these tables may force users to scroll horizontally to view a table designed on a system with a larger display. To minimize these problems, authors should use style sheets to control layout rather than tables.<br />
<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/tables.html#h-11.1Moreover">http://www.w3.org/TR/html4/struct/table ... .1Moreover</a><!-- m -->, you need to be using the IFRAME (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/present/frames.html#edef-IFRAME">http://www.w3.org/TR/html4/present/fram ... def-IFRAME</a><!-- m -->) or the OBJECT (<!-- m --><a class="postlink" href="http://www.w3.org/TR/html4/struct/objects.html#edef-OBJECT">http://www.w3.org/TR/html4/struct/objec ... def-OBJECT</a><!-- m -->) elements. Note, however, that the IFRAME is defined in the transtioinal DTD. OBJECT, the strict.<!--content-->
 
Back
Top