I have this table:
<table class="mytbl">
<thead>
<tr>
<th>dyn-tbl-hdr-1</th> <----these actually are timestamps.
<th>dyn-tbl-hdr-2</th>
<th>dyn-tbl-hdr-3</th>
<th>dyn-tbl-hdr-4</th>
<th>dyn-tbl-hdr-5</th>
<th>dyn-tbl-hdr-6</th>
</tr>
</thead>
<tbody>
<tr>
<td>20</td>
<td>50</td>
<td>60</td>
<td>20</td>
<td>50</td>
<td>60</td>
</tr>
<tr>
<td>33</td>
<td>5455</td>
<td>4550</td>
<td>245</td>
<td>50566</td>
<td>5678</td>
</tr>
<tr>
<td>33433</td>
<td>598455</td>
<td>894550</td>
<td>96245</td>
<td>7050566</td>
<td>4325678</td>
</tr>
</tbody>
</table>
I want to display only those "columns" whose value in first row is 20 (or 20 and 60). I want to show/hide columns based on any row's cell value. objective is to show only those columns for which value of cell in a given row matches. (So in above example show only those columns for which the row 1 contains 20 (If user want to see 20). Can I show only those columns for which ro1 contains 20 and 50? I guess I need to first pick a row, then cell values, then hide columns based on that row and selected cell values. But I am not sure how to code this in jquery. I appreciate all help.
In my app table is dynamically generated. Table headers are not constant they are actually timestamps.