I have some JQuery that filters a table when the select list is changed using :contains but because two of the options are so similar it doesn't filter correctly. Here is a functional JSFiddle. I tried implementing a .filter but I obviously am doing something wrong. Here is the JSFiddle
Current .filter
$(this).filter(function(){
return $(this).text===selectValue;
}).addClass('hidden');