I\'m trying to filter a table from an alphabetical input with jQuery.
I have first and last names in two columns of the table, and I\'d like
$("td:not(:contains('" + input_value + "'))").remove();
This is case sensitive ... what specifically are you attempting to filter on?