I have searched without success a JQuery plugin able to filter an HTML list (list of li
, div
or others) based on its content. I found numerous ones, but none of them seems to support what's called collation in MySQL (and certainly in other places).
For those not familiar with this concept, collation is the way some characters in foreign languages (other than English, I mean) are considered equivalent. For instance, in French, filtering for ‘Éléphant’, ‘éléphant’ or ‘elephant’ should give you identical results. It's a kind of lax filtering where derived accented characters like ‘é’, ‘è’, ‘ê’ and ‘ë’ are considered equivalent to the unaccented letter ‘e’.
This question is quite linked to this other one: How does internationalization work in JavaScript?.
My question is double:
- Does somebody have a good pointer on this unfindable plugin (tired of playing Indy in the JQuery plugins jungle to find the graal and I haven't brought my whip)?
- Failing that, I will be glad with some good tips or resources on which is the easiest way to build this sort of mechanism.