Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding a table row in Netscape

Status
Not open for further replies.

NeffTribe

Programmer
Oct 1, 2001
8
0
0
US
In IE I have not trouble setting the style's display property to "none" or "inline" to hide and display a row of a table. In Netscape 6.x the contents of the row are hidden but the row doesn't collapse. When I set it back to "inline" the contents are displayed but the row height stretches.

Here's a very simple sample (click 'switch'):
-----------------
<html>
<head>
</head>

<script language=&quot;javascript&quot; type=&quot;text/javascript&quot;>
function switchIt(id)
{
o=document.getElementById(id);
o.style.display = o.style.display == 'inline'?'none':'inline';
}
</script>

<body>

<div onclick=&quot;javascript:switchIt('details')&quot;>Switch</div>

<table border=1>
<tr id=&quot;details&quot; style=&quot;display:inline&quot;>
<td bgcolor=&quot;cccccc&quot; > hello </td>
</tr>
</table>

</body>
</html>
-----------------

Is there another way to do this?

Thanks,

-David
 
Hey NeffTribe,

NS6 bugs? Using 'display' is pretty new for Netscape, so try setting 'display' to '', not 'inline'. This will work the same (on your example) for both IE and NS6.

I provided an example below:

<html>
<head>
</head>

<script language=&quot;javascript&quot; type=&quot;text/javascript&quot;>
function switchIt(id)
{
o=document.getElementById(id);
o.style.display = o.style.display == ''?'none':'';
}
</script>

<body>

<div onclick=&quot;javascript:switchIt('details')&quot;>Switch</div>

<table border=1>
<tr id=&quot;details&quot;>
<td bgcolor=&quot;cccccc&quot; > hello </td>
</tr>
</table>

</body>
</html>


Try it and see what happens,

Raver1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top