So I am dealing with Jquery auto complete.
I include jquery and auto complete jquery stuff.
<script src="../../jquery/jquery.js"></script>
<script src="../../jquery/jquery.autocomplete.js"></script>
<script>
$(document).ready(function() {
var townList = ["London","Manchester"]; //establish user town list
$("input#townSearcher").autocomplete({source:townList});
}
</script>
<input type="text" id="townSearcher" />
The AutoComplete does not work when i put Lon in or Manc for example, what am I missing in this simple example?