Tabels with links

liunx

Guest
What i have as you can look is 2 tabels one with a link the other i want to use as a view window. How would i made that link open into the second tabel?<br />
<br />
ok basically here is my code as of now:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"<br />
"http://www.w3.org/TR/html4/loose.dtd"><br />
<html><br />
<head><br />
<title>Untitled Document</title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
</head><br />
<br />
<body><br />
<br />
<br />
<table width="100%" border="0" cellpadding="0" cellspacing="0"><br />
<!--DWLayoutTable--><br />
<tr><br />
<td width="100%" height="40"><a href=http://www.webdeveloper.com/forum/archive/index.php/"http://avatarguild.com/phpbb">Avatar Forum </a></td><br />
</tr><br />
</table><br />
<table width="100%" border="0" cellpadding="0" cellspacing="0"><br />
<!--DWLayoutTable--><br />
<tr><br />
<td width="100%" height="400"><p>how do i get above link to open in this tabel?</p> </td><br />
</tr><br />
</table><br />
</body><br />
</html><!--content-->Place an IFRAME in the table cell where you want the page to appear. Give the IFRAME a name. Place<br />
target="iframename"in the links.<!--content-->ok i looked around got have the basic idea now. Avatarguild test site (<!-- m --><a class="postlink" href="http://avatarguild.com/test">http://avatarguild.com/test</a><!-- m -->) <br />
<br />
it has the iframe in it now but i had to specify the hight. which brings new problem. i have a scroll bar now to the right for the iframe and one for my browser looks horrid.<br />
<br />
i saw stuff on dynamic iframes:<br />
<br />
<br />
<br />
<script language="JavaScript"><br />
function iFrameHeight() {<br />
h=top.frames['custFrame'].document.body.scrollHeight;<br />
if(document.getElementById){<br />
document.getElementById('custFrame').style.height = h;<br />
}<br />
else if(document.all) {<br />
document.all['custFrame'].style.height = h;<br />
}<br />
}<br />
</script><br />
<br />
is their a way to incorporate some thing like this, or may be an easier way to get it to just size out to the page and make the all scolls invisible?<!--content-->
 
Back
Top