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
without quickfilter
$('#txtSearch').keyup(function (e) { var query = $(this).val().toLowerCase(); $('#list img').each(function (index) { if ($(this).attr('title').toLowerCase().indexOf(query) == -1) { $(this).hide(); } else { $(this).show(); } }); });