Autocomplete JQuery Input Text

I am using jquery and looking for a autocomplete that will support the must Match option (where the user must enter an exists item name)

 jQueryUI's autocomplete can do this along with Scott González' autoSelect plugin, combined with the change event on the widget. If you include the plugin, all you should need is

First you can write on HTML Code:
<input id="auto" />


Then You can write Javascript :

$(function () {
    $("#auto").autocomplete({
        source: ['England', 'Germany', 'Denmark', 'Sweden', 'France', 'Greece', 'Italy'],
        change: function (event, ui) {
            if (!ui.item) {
                this.value = '';
            }
        }
    });
});
Auto Complete Text JQuery
Auto Complete Text JQuery

Or you can see the Demo Application
Autocomplete JQuery Input Text
Item Reviewed: Autocomplete JQuery Input Text 9 out of 10 based on 10 ratings. 9 user reviews.
Emoticon? nyengir

Berkomentarlah dengan Bahasa yang Relevan dan Sopan.. #okemasbro! ^_^

Komentar Terbaru

Just load it!