Created by: dyve
I implemented the bare minimum extra, based on experience with my jquery autocompleter (https://github.com/dyve/jquery-autocomplete).
You can test this with this init:
$(".typeahead").typeahead({
source: "falcons.json.html"
});
and a simple datasource like this falcons.json.html:
[
"Merlin",
"Gyr Falcon",
"Lanner Falcon",
"Hobby",
"Kestrel"
]