Click to See Complete Forum and Search --> : Displaying linked content in a table


Dark Dragon
09-19-2003, 09:42 AM
After some thought I decided to put the idea of displaying linked content in an iFrame on the back burner.

So now I was fiddling around with having the same content displayed in a table. So here is what I did..I created a single one row, one column table and assigned it a name..so far so good.

Then I created a couple of links and made sure the target was the name of my table however this is where the trip into headache land began.

The content opens up a new window instead of displaying it in the table so for the table name do I need to write out "table name" or "table id" in the tag?

pyro
09-19-2003, 09:45 AM
With an <a> tag, you can not target a table. Only window objects (frames, new windows, parent, etc). You'll have to use PHP or JavaScript to do it (preferably the former).

http://www.infinitypages.com/research/divinclude.php
http://www.infinitypages.com/research/clientsidedivinclude.htm

Dark Dragon
09-19-2003, 09:58 AM
Okay..I see..thanks Pyro.

pyro
09-19-2003, 10:03 AM
You bet... :)