riklomas / quicksearch

A jQuery plugin for searching through tables, lists, etc quickly
http://www.lomalogue.com/jquery/quicksearch/
680 stars 261 forks source link

Action on multiple tables #1

Closed gabriel66 closed 14 years ago

gabriel66 commented 14 years ago

Hi,

The previous version of Quicksearch was able to act on multiple tables on the same page as long as thses tables have the same ID. Is that possible to be done in this new version?

riklomas commented 14 years ago

Yes, you can have as many tables/lists working with quicksearch as you like. Remember, that if you're working with multiple tables, don't use the same id for them, ids are meant for single elements, use a class on them instead, for example:

 $('input#id_search').quicksearch('table.qs tbody tr');
gabriel66 commented 14 years ago

thanks a lot