JSFiddle - React, Tailwind, and code Playground
by steelywing
HTML
<input type="text" />
JavaScript
$("input").autocomplete({
source: ["Apple", "Boy", "Cat"],
minLength: 0,
}).focus(function () {
$(this).autocomplete("search");
});
by steelywing
<input type="text" />
$("input").autocomplete({
source: ["Apple", "Boy", "Cat"],
minLength: 0,
}).focus(function () {
$(this).autocomplete("search");
});