We are really close now and I am sorry to keep imposing on you like
this, you are being most helpful.
The filers need to be AND instead of OR, so if you enter
"st,ac" you should only get 2 results back, the
"ac,st" and the "st,ac" but none of the others.
Also, because of the way this is one filter in a chain of others,
each one hiding results that don't match, this will potentially
display previously hidden rows so it needs to be changed from
.toggle() to .hide() somehow.
The flow is...
- Show all rows
- hide any not matching filter 1
- hide any not matching filter 2
- ...
- hide any not matching filter 9
So you end up with just the rows that match all the filters,
using the toggle method on this one filter will break this.