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 = ['"Floral" cluster style Tennis CZ Bracelet','"Hearts with Bows" Designer Drop CZ earrings','"Lock & Key" Drop CZ earrings','2 Row Style Tennis CZ Bracelet','3 Row Micro Pave set CZ Bangle','Angel Wings Designer CZ Pendant','Angel Wings Ear studs','Be Dazzle Huggies small hoop CZ earrings','Be Dazzled Designer stud CZ earrings','Beautiful Round "Halo" CZ Pendant','Beautifully design "Omega" CZ Bracelet','Bubble Halo Designer CZ earrings','Cascade Designer stud CZ earrings','Contemporary Style "Wave" CZ ring','Dreamcatcher Designer CZ Pendant','Dress Circle Halo CZ Pendant','Drop Love Heart with Bow CZ Pendant','Elegant "Radiant Cut Halo" CZ earrings','Elegant Pear shape Drop "Halo" CZ Pendant','Emerald cut "Radiant" CZ ring','Fancy Round "Tiffany Style" solitaire CZ ring','Floral Micro set stud CZ earrings','Flower cluster stud CZ earrings','Heart Shape "Lock & Key" CZ Pendant','Hearts & Kisses Design CZ Bracelet','Link Design contemporary CZ ring','Loop Buckle CZ Bracelet','Love Expression CZ Bangle','Love Heart Rub over stud CZ earrings','Love Hearts Tennis CZ Bracelet','Micro Pave set "Crossover" CZ ring','Micro Pave set 3 row Band CZ ring','Micro set Split 2 row Band CZ ring','Open "Halo" Design CZ Bracelet','Oval & Baguette "Tennis Style" CZ Bracelet','Ovals & Squares Design CZ Bracelet','Panther Link Style CZ Bracelet','Pear shape "Halo" Expression CZ earrings','Princess cut CZ ring with "Radiant" shoulders','Princess Cut Hoop CZ earrings','Radiant Cut Special CZ Pendant','Radiant Cut" Special CZ Pendant','Round "Halo" Expression CZ earrings','Rubover Style 3 row "Bubble" CZ ring','Rubover Style Bubble CZ ring','Say it with Love Solitaire Heart CZ ring','Simplicity Style Tennis CZ Bracelet','Simply Squares Tennis style CZ Bracelet','Special "Eclipse" Design CZ Bracelet','Special "Forever" Eternity CZ ring','Special "Princess cut Solitaire CZ ring','Special Asscher cut "Tiffany Style" Solitaire CZ ring','Special Design "Bubble" CZ ring','Special Emerald cut "Illusion" CZ ring','Special Emerald cut Solitaire CZ ring','Special Radiant cut Half Eternity CZ ring','Special Round "Tiffany" Style solitaire CZ ring','Special Round Solitaire CZ ring','Special Round Solitaire set withTapper Baguette shoulders','Special Rub over Baguettes & Round "Tennis style" CZ Bracelet','Special Solitaire Heart shape CZ ring','Special Solitaire Marquis CZ ring','Square "Halo" CZ Pendant','Square "Halo" stud CZ earrings','Square cut "Halo" Expression CZ ring','Square cut "Halo" Expression CZ ring','Starburst 3 Row Tennis Style CZ Bracelet','Starburst round cluster style CZ Bracelet','Starburst Tennis CZ Bracelet','Stunning "Floral Cluster" CZ Pendant','Stunning Cluster CZ earrings','Stunning Micro set Hoop CZ earrings','Stunning Pear Shape "Drop Halo" CZ earrings','Very Special 3 stone Asscher cut CZ ring' ]; var productsIDs = [ ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 40, source: substringMatcher(products) });