I'm probably doing something dumb and I will be embarrassed when I see the answer, but I cannot get the simplest example of EasyAutocomplete to work. Here is my complete code, based on the "Basics" example at http://easyautocomplete.com/guide :
<head>
<!-- jQuery -->
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- JS file -->
<script src="jquery.easy-autocomplete.min.js"></script>
<!-- CSS file -->
<link rel="stylesheet" href="easy-autocomplete.min.css">
<script>
var options = {
data: ["blue", "green", "pink", "red", "yellow"]
};
$("#basics").easyAutocomplete(options);
</script>
</head>
<body>
<h2>Search</h2>
<input id="basics" />
</body>
This is running from a local file, not a web server. I have verified that the browser can load all script and css files, and there are no errors. But nothing happens when I type in the field. The EasyAutocomplete version is 1.3.5.
tag
– Will Black May 12 '21 at 19:51