I'm trying to filter a table from an alphabetical <select>
input with jQuery.
I have first and last names in two columns of the table, and I'd like to filter the rows by either of these.
I have a select input set up as so:
<select>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
...
</select>
and I'd like to filter this table:
<tr>
<td>Joe</td>
<td>Schmoe</td>
<td>$2482.79</td>
<td>172.78.200.124</td>
<td>http://gmail.com</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>$2776.09</td>
<td>119.232.182.142</td>
<td>http://www.example.com</td>
</tr>
How would I go about filtering the table using jQuery?