The problem at hand is that the search suggestions are not ordered by same starting characters as can be seen in the picture:'ne' should be at the very top, yet it is at the very bottom
How can I fix this problem?
The following is my code`$(document).ready(function() { //var queries = bank;
var queries = ['there is no need', 'need', 'no need', 'ne'];
//Dataset defined in index.php
// *****
//(NOTE: Typehead works by the order of the elements in dataset, thus
// they are ordered in the database first based on count)
//Constructing the suggestion engine
var queries = new Bloodhound(
{
datumTokenizer: Bloodhound.tokenizers.whitespace,
queryTokenizer: Bloodhound.tokenizers.whitespace,
local: queries
});
// Initializing the typeahead (.typehead is the selector having what's currently
// being typed)
$('.typeahead').typeahead(
{
hint: true,
highlight: true, /* Enable substring highlighting */
minLength: 1 /* Specify minimum characters required for showing result */
},
{
name: 'queries',
source: queries
});
}); `