/
home
/
obinna
/
html
/
cravings
/
public
/
js
/
Upload File
HOME
var foodInput = document.getElementById("food"); autoComplete({ input: foodInput, fetch: function(text, update) { text = text.toLowerCase(); var suggestions = searchlist.filter(n => n.value.includes(text)) update(suggestions); }, onSelect: function(item) { foodInput.value = item.name; } });