端くれプログラマの備忘録 jQuery UI [jQuery UI] 基本メモ: Autocomplete

[jQuery UI] 基本メモ: Autocomplete

サンプルコード

<input type="text" id="langs">
var langs = ['ja','en','cn','fr','sp'];
$('#langs').autocomplete({
    source: langs,
});

参考サイト

Autocomplete | jQuery UI
https://jqueryui.com/autocomplete/