I’m using autocomplete of jQuery UI : excellent plugin!
The only thing I don’t like is that, if I have a list of 40 items, I’d like to show only 10 items.
This is my actual code :
<script type="text/javascript">
$(function() {
var availableTags = [<%= m_strTags %>];
$("#myTags").autocomplete({
source: availableTags,
max: 20
});
});
</script>
Is it possible put some parameters to do this thing?
If you do not want to modify the source list, you could try scrollable results:
http://jqueryui.com/demos/autocomplete/#maxheight