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 = ['Beanie hat','Climatec Long cuff glove for equestrians','Climatec Long cuff glove for shooting','Climatec Short cuff glove for equestrians','Country Waterproof Socks','Crispi Hunter Goretex Boots','Crispi Kanada Evo Boots','Crispi Luberon Suede Boot WAS £126.95 YOU SAVE £37.95','Crispi Maremma Suede Boot Was £149.95 You Save £44.95','Crispi Wild Evo Goretex Boots','Glove Liners','Macwet Summer Gloves','Mid Light Thermal Waterproof Socks','Sealskinz Sock Liners','SealSkinz Waterproof Gloves - Black','SealSkinz Waterproof Gloves - Olive Green','The MacGaiter - Black','The MacGaiter - High Visibility','The MacGaiter - Mountain Green','The MacGaiter - Seal Brown' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });