It's been a while since I coded with jQuery so I'm probably making a basic error. Can anyone advise where I am going wrong please? Nothing happens when I type in the search box. Thanks.
In the head section:
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
<!-- JS file -->
<script src="search/jquery.easy-autocomplete.min.js"></script>
<!-- CSS file -->
<link rel="stylesheet" href="search/easy-autocomplete.min.css">
<script>
var options = {
data: ["blue", "green", "pink", "red", "yellow"]
};
$("#basics").easyAutocomplete(options);
</script>
In the body section:
<div class="container">
<ul class="breadcrumb">
<li>You are here:</li>
<li><a href="index.php">Home</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Example</a></li>
</ul>
<h2>Search</h2>
<input id="basics" />
</div>