On Sep 6, 2007, at 4:20 PM, Klaus Hartl wrote:
traunic wrote:BTW, just to give an example of the ease of "upgrade": changes to filejquery.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)');
or just use the :first pseudo-class: target = jQuery(target).children('ul:first'); --Karl