traunic wrote:
BTW, just to give an example of the ease of "upgrade": changes to file
jquery.tableFilter.js

line - 487
old: target = jQuery(target).children('ul').eq(0);
new: target = jQuery(target).children('ul').slice(0,1);

To make it work both in jQuery 1.1.3 and 1.1.4+ try:

target = jQuery(target).children('ul:eq(0)');



--Klaus

Reply via email to