Click to See Complete Forum and Search --> : i want to open links in any table cell in sam page


mangawy
11-01-2003, 03:27 PM
i want to make emulation by javascript at my page to be as fram pages in HTML
i mean i want to click links in page and it will open in any table cell in same page.
is it possible by javascript?
i hope that.
than you.

Charles
11-01-2003, 03:37 PM
Originally posted by mangawy
is it possible by javascript? No, and you wouldn't want to use JavaScript if you could. It's too iffy; you'ld end up with a dead link 13% of the time.

1) You don't want to use tables for layout.From the HTML 4.01 Specification:
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.
http://www.w3.org/TR/html4/struct/tables.html#h-11.12) You do, however, want to use the IFRAME (http://www.w3.org/TR/html4/present/frames.html#edef-IFRAME) or the OBJECT (http://www.w3.org/TR/html4/struct/objects.html#edef-OBJECT) element.

3) Note that the IFRAME element is defined in the HTML 4.01 Transitional DTD (http://www.w3.org/TR/html4/sgml/loosedtd.html) and the OBJECT element is defined in the HTML 4.01 Strict DTD (http://www.w3.org/TR/html4/sgml/dtd.html).

mangawy
11-01-2003, 03:46 PM
i don't want to use tables for layout
i wil tray use css
and i will learn more about IFRAM and OBJECT
and reply
thank you.