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); line - 494 old: target = jQuery(target).children('ul').eq(0); new: target = jQuery(target).children('ul').slice(0,1); line - 505 old: target = jQuery(target).children('ul').eq(0); new: target = jQuery(target).children('ul').slice(0,1); line - 903 old: var ele = jQuery(this.col.root.headerRows[0]).children().eq(this.col.index); new: var ele = jQuery(this.col.root.headerRows[0]).children().slice(this.col.index, 1); line - 929 old: smid = jQuery(target).children('ul').eq(0).attr("id"); new: smid = jQuery(target).children('ul').slice(0,1).attr("id"); seems to be working fine w/ jquery-nightly.js now on PC FF2, IE7, Sfr3 it's plugins (a seperate js) don't work, but I can live without those....