The ‘typeahead’ widget 

$('#search').typeahead({
  source: function(query) {
    query = (query || '').toLowerCase();
    return jQuery.grep(topics, function(a) {
      return a.toLowerCase().indexOf(query) >= 0;
    });
  },
  updater: function(item) {
    // do something with the selection
  }
});