How would you implement a full-text poor person search in Javascript?
I implement a static web page without a database backend, and the page loads several thousand records of short text strings through an Ajax JSON load. I would like the user to be able to filter these strings effectively with keyword searches, ideally with something smarter than just iterating over each row and executing Javascript .indexOf() .
I was thinking of making my JSON hidden HTML and using the JQuery DOM search plugin, but I doubt it will be faster than repeating my JSON list.
Cerin source share