For each list in the wrapped set
In your HTML, create a select list
<select id="mySelectList">
<option value="1">One </option>
<option value="2">Two </option>
<option value="3">Three </option>
</select>
In your ready function...
$(function(){
$('#mySelectList').minListFilter();
});
$(function(){
$('#mySelectList').minListFilter(
{size: 10,
divWrapperClass: "mySelectListWrapper",
criteriaFieldClass: "myCriteria",
onNarrowedToOne: function(){
// Move to the next field once we've narrowed
// the list to a single option.
$('#nextField').focus();
}});
});