Hi All,
I am new to Jscript and need the layer function like ebay did
http://pages.ebay.com/help/sell/fees.html
There is a "optional Feature fees" which you can Show or Hide it . Anybody
know how to make things like that?
Thanks for your time,
Steve
Nic Roche - 25 Jul 2005 22:53 GMT
> I am new to Jscript and need the layer function like ebay did
Its not really a layer (absolute positioned element).
The tbody of the table is shown/hidden using the style.display property.
<table>
<thead>
...
</thead>
<tbody id="oTBody1">
...
</tbody>
</table>
//SHOW
oTBody.style.display = "block";
//HIDE
oTBody.style.display = "none";
Nic Roche
> Hi All,
>
[quoted text clipped - 8 lines]
>
> Steve