views:

15

answers:

1

I type the words "How do" and it pops up a list, and returns matches on "How do". I stop for a second, and continue typing " I make a sandwich?" for instance.

It pops up on the "How do" but does not refresh the results when I continue typing.

How do I get it to refresh once data has been typed more?

Here's my code:

$(document).ready(function () {
    $("input#Query").autocomplete('<%= Url.Action("Find", "Controller") %>', { minChars: 3, delay : 400 });
});
A: 

I changed some of the settings in the .js file and it fixed the problem.

Rick Ratayczak