Questions tagged [bloodhound]

Bloodhound is the typeahead.js suggestion engine. It's robust, flexible, and offers advanced functionalities such as prefetching, intelligent caching, fast lookups, and backfilling with remote data.

Features

  • Works with hardcoded data
  • Prefetches data on initialization to reduce suggestion latency
  • Uses local storage intelligently to cut down on network requests
  • Backfills suggestions from a remote source
  • Rate-limits and caches network requests to remote sources to lighten the load

See the official documentation here.

280 questions
0
votes
1 answer

Typeahead + Bloodhound not refreshing

Racking my brains here hoping for some help. I have successfully implemented bootstrap 3 typeahead (https://github.com/bassjobsen/Bootstrap-3-Typeahead) and it is showing suggestions from my JSON as expected. var employer = new Bloodhound({ …
user3163357
  • 129
  • 3
  • 10
0
votes
1 answer

Bootstrap Typeahead is not displaying suggestion list

I follow the documentation of typeahead but nothing is working for me. I am loading my data from remote : Here is the structure of data coming from remote: {"source":[{id:1,name:"coke"},{id:2,name:"papa"},{id:3,name:"mama"}]} on client side here…
aidonsnous
  • 1,475
  • 4
  • 19
  • 41
0
votes
1 answer

Twitter's Typeahead Suggestions Ordering

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…
M. Shoaib
  • 1
  • 1
0
votes
1 answer

Typeahead.js / Bloodhound when clicking on suggestion, populates search box with object instead of name

When I start typing the name of a golf course in a search box using Typeahead.js and Bloodhound, the dropdown correctly shows just the name of the golf course. Problem When I click on .tt-suggestion, which contains the course's name, the text that…
Andrew Nguyen
  • 1,416
  • 4
  • 21
  • 43
0
votes
1 answer

Jquery Typeahead Bloodhound is not working properly

I would like to use the javascript typeahead bloodhound but it's not working properly with a remote. Here is my Javascript code :