I have been looking at this jQuery quick filter code here: https://github.com/syropian/jQuery-Quick-Filter
I\'d like to be able to use it to quick filter a list of image
Replace this:
return (elem.textContent || elem.innerText || "")
with this:
return (elem.getAttribute('title') || "")
SNIPPET
00A00