I am using jquery autocomplete , and I've set these vars
$("#some_id").autocomplete("search.php?in=somewhere", {
width: 270,
selectFirst: false
});
$('#some_id').setOptions({max: 5});
As you can see it returns 5 list items ( results ) , and I want to add sixth list item where should be shown some text and how many results are exist except this 5 .
How do I do that ?