can you load a html page into a table?

windows

Guest
Is it possible to load a html page into a table when i press a button. When its possible whats the code to do it.<br />
<br />
Thx<!--content-->you could put an iframe in the table, and have a hyperlink to load a page in that iframe:<br />
<br />
<br />
<table><br />
<tr><br />
<td><br />
<iframe name='content' src='http://www.htmlforums.com/archive/index.php/first.html'><br />
</td><br />
</tr><br />
</table><br />
<br />
<br />
links in the page in the table can be done as normal:<br />
<br />
<br />
<a href='http://www.htmlforums.com/archive/index.php/next.html'><br />
<br />
<br />
links outside of the page in the table (ie, elsewhere in the window as the user sees it) have to reference a target frame:<br />
<br />
<br />
<a href='http://www.htmlforums.com/archive/index.php/next.html' target='content'><br />
<br />
<br />
<br />
more info about the different tags can be found at:<br />
<br />
HTML Help (<!-- m --><a class="postlink" href="http://htmlhelp.com/reference/html40/alist.html">http://htmlhelp.com/reference/html40/alist.html</a><!-- m -->)<!--content-->thx for the info<!--content-->There is also a way to make a scrollable table. I think it involves CSS overflow. Im not exactly sure of the code, but I will try to find it ;)<!--content-->its overflow: auto for the scrollable div or table, but that wouldnt let you load a page in a table when you click on a link, you use an iframe for that<!--content-->Originally posted by n8thegreat <br />
its overflow: auto for the scrollable div or table, but that wouldnt let you load a page in a table when you click on a link, you use an iframe for that <br />
<br />
lol Yeah, next time I need to read the post a lil slower!!! My bad :P<!--content-->well, with a bit of jiggery pokery, you could dynamically load content into the div - using Javascript or a server side.<!--content-->Originally posted by Horus_Kol <br />
well, with a bit of jiggery pokery, you could dynamically load content into the div - using Javascript or a server side. <br />
<br />
<br />
yup, but the page would have to reload when you click a link, just loading another page into a div/cell is easy with ssi or php :D<!--content-->
 
Back
Top