var substringMatcher = function(strs) { return function findMatches(q, cb) { var matches, substringRegex; // an array that will be populated with substring matches matches = []; // regex used to determine if a string contains the substring `q` substrRegex = new RegExp(q, 'i'); // iterate through the pool of strings and for any string that // contains the substring `q`, add it to the `matches` array $.each(strs, function(i, str) { if (substrRegex.test(str)) { matches.push(str); } }); cb(matches); }; }; var products = ['ABELIA','ACTINIDIA (kiwi)','ARBUTUS','BERBERIS','BUXUS','CALLISTEMON','CAMPSIS','CERCIS','CHAMAEROPS HUMILIS','CITRUS','CORDYLINE','CUPRESSOCYPARIS','CUPRESSUS','CYCAS REVOLUTA','CYDONIA (quince)','DASYLIRION','ELAEAGNUS','ERIOBOTRYA (loquat)','EUONYMUS','FEIJOA','FICUS (fig)','HEDERA','LAURUS','LIGUSTRUM','LONICERA','MAGNOLIA','MALUS (apple)','MYRTUS','NANDINA','OLEA (SHAPED)','OLEA (SINGLE TREES)','OLEA (SPECIMENS)','OLEA PALLETISED','PARTHENOCISSUS','PASSIFLORA','PHOENIX CANARIENSIS','PHORMIUM','PHOTINIA','PHYLLOSTACHYS','PINUS','PITTOSPORUM','PRUNUS','PRUNUS (almond)','PRUNUS (apricot)','PRUNUS (cherry)','PRUNUS (plum)','PUNICA (granado)','PYRACANTHA','PYRUS (pear)','QUERCUS','SOLANUM','THUJA','TRACHELOSPERMUM','TRACHYCARPUS FORTUNEI - GROUPS','TRACHYCARPUS FORTUNEI - SINGLE TRUNK','VIBURNUM','VITIS','WASHINGTONIA ROBUSTA','WISTERIA','YUCCA MIX','YUCCA ROSTRATA' ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 10, source: substringMatcher(products) });