I am new to jQuery. Maybe this is a very simple question, but I have no idea how to do it.
I have this table:
<table class="mytable">
<th>name</th>
<th>second</th>
<th>age</th>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
</table>
I want to add a dropdown list above this table where you can select following values/ages: 50 or below / 51 - 80 / 80 and above.
For example if '80 and above is selected', only John Doe (age 80) and Eve Jackson (age 94) should be show in the table.