jQuery listplus examples

View API

There was once an html list that required client side sorting... Then it needed filtering, then grouping, then stable multi value sorting, then multi term weighted filtering and all that code was a bit of a mess...

Listplus wraps these common list functions in an unintrusive jQueryUI widget.

Listplus does not change or style your dom elements, nor does it keep track of ordering between render cycles making it very easy to plug in to existing code without it needing to be re-written to accomodate the plugin.

try:

sortBy: [".lastname"] groupBy: ".lastname" filterBy: ["Riv"] hideList: [".lastname"] $('#mylist').listplus({ 'filterBy': ["Pop","Riv","Sh"], 'sortBy': [function(li) {return $(li).data("listplus-filterscore")}] });