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 = ['10 Classic Fine Cigars','19 Crimes Red Wine','7 Up Lemon & Lime','Amber Leaf Original 30G','Antica Italian Sambuca','Apple Juice','Apple Sourz','Archers Schnapps','Au Blue Raspberry','Au Vodka Black Grape','Au Vodka Bubblegum','Au Vodka Fruit Punch','Au Vodka Green Watermelon','Au Vodka Pineapple Crush','Bacardi Carta Blanca white Rum 70cl','Baileys Original Irish Cream Liqueur','Banana Ice','Beer Ambulance Hoodies','Beer Ambulance t shirts','Beer Hub Hoodies','Beer Hub t shirts','Benson & Hedges Blue 20 Cigarettes','Blue Razz','Blueberry','Budweiser','Cabernet Sauvignon','Cadbury Dairy Milk Buttons','Captain Morgan’s Original Spice Gold 1 litre','Captain Morgan’s Original Spice Gold 70cl','Carling','Carlsberg Export','Chardonnay','Cherry Sourz','Cirvoc','Classic Raw Brown papers','Coca Cola Original Taste','Coca Cola Zero Suger','Cool shots mixed vodka 25 pack','Corona Extra','Cutters Choice Extra Fine 30G','Desperados','Diet Coke','Doritos Chilli Heatwave','Doritos Original','Durex Original Extra safe','Elfbull Ice','Fanta Orange 2 litre','Fosters’s','Fruits Skittles','Gift Vouchers','Gold Leaf JPS Quality Blend 30G','Golden Virginia Original 30G','Gordon’s London Dry Gin 70 cl','Gordon’s Premium Pink Gin 70cl','Gordon’s Sicilian Lemon Gin 70cl','Grey Goose vodka 70cl','Guinness','Haribo Starmix','Haribo Tangfastics','Headchef clipper','Healeys Rattler Original','Healeys Rattler Peach','Healeys Rattler Pear','Heineken','Heinkein','Hennessy','Henry Westons Vintage','Jack Daniels Gentleman Jack','Jack Daniels Old No 7 Whiskey 70cl','Jack Daniels Poker Set','Jagermeister 70cl','Jameson Old Irish Whiskey 70cl','Kopparberg Mixed Fruit','Kopparberg Strawberry & Lime','Kraken 70cl','Kronenbourg 1664','Lambit & Butler Blue Superkings 20 Cigerettes','Malbec','Malibu Original White Rum 1 litre','Maltesers','Merlot','Moët & Chandon','OCB Premium','Orange Juice','Party Ice Cubes 2kg','Passoa passion fruit drink','Pineapple Juice','Pink Lemonade','Pinot Grigio','playing cards','Prosecco Doc','Raspberry Sourz','Red Bull Energy Drink','Rizla Medium Thin Green','Rose','Rum - Passion Fruit','Rum - Spiced','San Miguel','Sauvignon Blanc','Schweppes Ginger Ale 1 Litre','Schweppes Slimline Tonic Water 1 Litre','Shiraz','Smirnoff No 21 Vodka 70cl','Smirnoff Berry Burst Flavoured Vodka 70cl','Smirnoff Ice Original','Smirnoff No 21 Vodka 1 litre','Smirnoff No 21 Vodka 35cl','Smirnoff Raspberry Crush Flavoured Vodka 70cl','Southern Comfort Original 1 litre','Sovereign Blue Superking 20 Cigarettes','Sprite Lemon & Lime','Stella Artois','Strawberry Ice','Strongbow Dark Fruit','Strongbow Original','Swan Filter Tips','Tequila 1800 silver','Tequila Rose','Thatchers Gold','Thatchers Haze','Thatchers Orange','Watermelon','Wkd Blue','WKD Blue Lagoon Cocktail','Wkd Mixed','WKD Tropical Sunrise Cocktail' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });