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 = ['Aberdeen CBD Oil','ABWR Wellness and Reflexology','Align Wellness','Alva','Amanadas Podiatry','AndBreathe123','Angelic Alternatives','Aprils Studio','Aromatherapy Thyme','Aurora Fitness','Awesome Paws UK','Balance Fife','Banchory Yoga','Behna - Harmony in Health','Bella Hope Smith Books','Berwick Wood Produce','Bonding with Baby','braco-tv.me','Bronnercise','Butterflybees Wellbeing','Calm & Cool Studio','Calm Cool Studio','Calm Space','Calmwaves','Carnie Bees','Chtefan Photography','Clean Slate UK','Communion Tea Ceremonies by Laura x Main','Cotton Crab','CottonCrab Clothing','Crafted Comforts','Crystal Sanctuary Holistic Therapies','Dancing with the Universe','David Tyrrell - Aura Mists','Deep into Soul Healing','Deeside Lavender','Divine Quine','Dots and Blocks','Down2Earth Reiki','Dragonfly Crystal Therapies','Elemental Crystals','Emanuel and Me by Jac Turner','Enlight','Essentially Emily','Finding You Coaching','Foreshore Nutrition','Frances Scott Holistic Therapies','Freefield Flower Farm','From Lola with Love','From Suffolk with Love','Fruits Nuts Seeds','GaWell Holistic','GaWell Holistic Therapies','Gillian Florence','Gillian Watt - Wellbeing Practitioner/Animal Practitioner','Ginny Jones Intuitive Services','Grampian Yoga Association ( GYA)','Grow Free','Handmade Designed Greeting Cards','Hands on Approach','Haven House Healing','Healthy-ness','Holding Space','Holistic Soul','Holistic Tree','Holistichem','HolisticZen','Hope Ceremonies','Hungry Squirrel','Huntly Herbs','ICONIC Living & Business','International Medical Management','Intuitive Life Hub','J.G Pilates','Jane MacDonald','Jules Healing Gems','Julie Ferris Quantum Parenting','Just Ask Julie','Just Ask Julie - Professional Organiser','Kadampa Meditation Centre','Kahlmah Ayurvedic','Kalyach Yoga and Wellness','Karen Mae Simpson Complementary Therapies','Karen Mae Simpson Complimentary Holistic','KM Therapy','Laura Clark Holistic Wellness','Laura Donaldson Photography','Laura Horsburgh Intuitive Soul Coach','Laura Morrice, Master Energy Healer, Life Coach & Author','Laura Soul Coach','LB Cranio and Wellbeing','Leaf Natural Food Wraps','Lemon Well Med','Leona Young Coaching','Lighten the Load','LKBabywearing','Lynseys Holistic Healing and Wellbeing','Manalife Pilates','Mary Page Music','Natural Me','Nourished and Refuelled','Nutrition Brought to Life','Nuyounulife','o.m.tea','Organic Source','Peace and Pearl Holistic Therapies','Pearl and Peace Holistic Therapies','Rachael Morrice Coaching','ReLise Massage Therapy','Re-Wrap-It','Rocks-and-Roots','Rona Yoga','Rosy Rose Herbalist','Rowan Tree Therapies','Sacred Feminine Goddess Retreat','Safe Space Healing','Sage and Sonny','Sally Munro - Naturopathic Nutritionist','Sally MunroNaturopathic Nutritional Therapist','Sally Warrack','Samagra Health','Sea Splang','Sensitive Soul Fine Arts','Shape Wellbeing','Sharon Hanton Reflexology','SilverStory','Slow Living Events','Smelly Trees','Social Media Packages','Sourceful Holistic Wellbeing','Sourceful Wellbeing','Step into Calm','Sun Moon Shala Yoga','Suz McDonald and Gillian Cockburn','Tania Ware Ceramic Art','Taylor Made Refills','Tessa Williams Fragrances','The Butterfly Room','The Healing House','The Little Room of Calm','The Moon The Hare & Me','The Mummy Nanny','The Pet Stop','The Sanctuary','The Soul Place','The Sunart Soap Co','The Wee Wellbeing Box','Thistle and Clay','Tranquility Holistics','Udny Pumpkins','Unfurl Journeys','Unravel Tea','Urban Wellness Float','V-Yoga','Waste A Weigh','Weegie Wellbeing','Wild Wellness','Wildly Sacred','Wildly Sacred as the Wild Soul Companion','Witch Crystal','Yay4Yoga','Yoga by Elle','Your Positive Life' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });