Approaching Typeahead.js prefatched datums

167 Views Asked by At

I'm using Twitter Typeahead.js like this:

$('.autocomplete').typeahead({
  name: 'autocomplete',
  prefetch: https://localhost/datums.json
});

Is there any possibility how to approach datums.json values anywhere else in the script? Like creating a condition asking if some value exists in typeahead's datums.

1

There are 1 best solutions below

0
On BEST ANSWER

If I understand what you are asking for, you can use local instead of prefetch. Use an HTTP client (XMLHttpRequest, e.g.) to read /datums.json yourself, and store a reference to it in a variable. Then pass that variable as local to Typeahead.