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 = ['1/4lb Burger, Chips and Beans','1/4lb Chicken Burger, Chips and Beans','1/4lb Veggie Burger, Chips and Beans','10oz Fillet','10oz Gammon','16oz T-bone','8oz Ribeye','8oz Rump','8oz Sirloin','All Canned Beers','All Cold Drinks Large Glass','All Cold Drinks Standard Glass','Baby Roast Dinner','Bacon','Bacon, Egg, Chips and Beans','Bacon, Lettuce and Tomato','Beans','Beans on Toast','Beef','Beef, Onion and Mushroom','Beer Battered Cod Special','Bottle of Wine','Bottle of Wine (Small)','Breakfast Baggie','Brie, Bacon and Cranberry','Burger and Beans','Butter','Cappuccino','Cappuccino with Cream','Cartons','Cheese','Cheese and Beans','Cheese and Tomato','Cheese and Tomatoes on Toast','Cheese Burger, Chips and Beans','Cheese on Toast','Cheesy Chips','Cheesy Chips with Gravy','Chicken Nuggets and Beans','Chicken or Turkey and Stuffing','Chilli (if available)','Chips and Gravy','Coffee per Mug','Curry (if available)','Daily Homemade Cakes and Puddings','Earl Grey or Fruit Tea','Egg','Egg and Beans','Eggs on Toast','Extra Toppings','Extra Toppings - Cream','Extra Toppings - Custard','Extra Toppings - Ice Cream','Extras - Bread and Butter','Extras - Jam or Marmalade','Extras - Toast','Fishy Whales and Beans','Fruit Shoots','Ham','Ham and Cheese (Cold)','Ham and Melted Cheese','Ham, Eggs, Chips and Beans','Homemade Daily Specials - prices from','Hot Chocolate','Hot Chocolate with Cream','Hungrymans Breakfast','Lamb and Mint Sauce','Large Breakfast','Large Chips','Mean Mixed Grill','Mixed meats','Mixed Meats (Hot or Cold)','Mushrooms on Toast','Oasis Bottle','Omelette, Chips and Peas/Salad','Pork and Stuffing','Prawn','Prawns','Roast Beef','Roast of the Day','Salad','Sausage','Sausage and Beans','Sausage, Egg, Chips and Beans','Sausage, Onion and Gravy','Scampi, Chips and Peas','Scrambled/Poached Eggs on Toast','Slimmers Breakfast','Small Chips','Small Roast Dinner','Special Order 24oz T-Bone','Special Order 32oz T-Bone','Standard Breakfast (Served until 1.00pm)','Steak, Cheese, Mushroom and Onion','Sweet Chilli Chicken','Tea per Mug','Tea per Pot','Tomatoes on Toast','Tuna and Mayo','Tuna and Mayonnaise','Tuna Mayo','Turkey, Bacon and Cranberry','Turkey, Brie and Cranberry','Vegan Breakfast','Veggie Breakfast','XL Roast Dinner','Your sandwich toasted add' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });