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 = ['Beetroot Hash','Bread and Pastry Demonstration day','Christmas Entertaining Demonstration Day-Now Fully Booked','Christmas Feasts Hands on Day','Crunchy Celery and Apple Salad','Demo Dinner at Sorelle','Demonstration Workshop Gift Voucher','Divas and Divos Valentine Kitchen','Domestic Divas and Divos Winter Hands on Day','Easter Entertaining','Fathers Day Demonstration Day Lunch','Fidget Pie','Food demo and Taster at Cliffhanger','French Provincial Kitchen Hands on Day','Garlic Hunks','Hands On One Day Gift Voucher','Harissa Roasted Tomatoes','Homemade Naan Bread','Hot Chillied Pineapple','Hot Sesame Chicken And Avocado With Noodle Salad','Italian Kitchen Hands on Day','Ladies Demo Day','Lime and Ginger honey pudding','LW Fifty pounds Gift Voucher','LW One Hundred Pound Gift Voucher','LW Two hundred pound Gift Voucher','LWs Workshops - Pasta Making','LWs Workshops - Pastry Making','Marinated Spatchcook Chicken with Mustard Sauce','Mothers Day Demonstration Day Lunch','Muffulettas','Mussels with Garlic Hunks','Noodle Salad','Pan Fried Venison with a Juniper Rub, Port wine Sauce and Thyme Rosti','Pancake Stacks with Berries and hot Chocolate','Pea and Parsley Sauce','Rustic Kitchen Hands on Day','Rustic Summer Shortcake Tart','Saucy Chocolate Pud','Slow Cooked Rabbit with Prunes and Beer','Spanish Demo Day','Spanish Kitchen Hands on Day','SPANISH KITCHEN Workshop','Spiced Griddled Mackerel with Spinach Lentils','Spring Demonstration Day','Spring Hands on Day','Summer Divas Alfresco - Hands on Day','Summer Entertaining Hands On','Summer Stress Free Entertaining Demonstration Day','TATIN OF SWEET BEETS AND GINGER','Thai Kitchen - Hands on Day','Valentines Demonstration and Lunch','Vanilla Roasted Pears','VEGETARIAN KITCHEN DEMONSTRATION','Vegetarian Kitchen Hands on Day','Winter Kitchen Hands on Day','Winter Warmer Demonstration Day' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });