Hi there,
I found this solution for a case-insensitive jQuery :contains selector on this site (see http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector/783874#783874). It works great, however it comes at the cost of performance. Anyone else find this solution to be a bit slow?
I'm using the :contains selector to search a table. The user types a search string into a textbox. For each keystroke, it searches the table for that string, showing only the rows that contain that string via the :contains selector. Before implementing using the case-insensitive solution, this search was quick and snappy. Now with this solution, it locks up for a brief moment after each keystroke.
Any ideas on how this solution could be sped up?
