I just completed writing a script to show a data grid of my customer list. I do not want to show too much information horizontally so, I figure I use hidden layers and show them upon request.
That said, I have a table with 9 columns and one row per record set. I want to set a hidden second row which will display ONLY if I click on an icon I am placing on the table.
I tried
the style sheet for hidden looks like
The content within the <div> tabs shows no matter what I do.
What must I do to:
1) Hide layers by default
2) Show layers ONLY as I click on image link
Thank you all in advance!
Jose Lerebours
KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours
That said, I have a table with 9 columns and one row per record set. I want to set a hidden second row which will display ONLY if I click on an icon I am placing on the table.
I tried
Code:
<div class="hidden">
... some html here ...
</div>
the style sheet for hidden looks like
Code:
.hidden { visibility: hidden; }
I also tried
. hidden { display: none; }
The content within the <div> tabs shows no matter what I do.
What must I do to:
1) Hide layers by default
2) Show layers ONLY as I click on image link
Thank you all in advance!
Jose Lerebours
KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours