Prepends an input field to an element, witch allows live-filtering of children by text.
http://jsfiddle.net/sinky/S8rB7/
var defaults = {
childSelector: "> *" // only direct Children
};
$('ul').filterChildren();
$('table').filterChildren({
childSelector: 'tr'
});