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 = ['1923 Wembley Stadium seats','1972 Two Ronnies musical number Liz & Dick script','1973 Jackson 5 Script Including Michaels Talk','A unique dossier of hundreds of pages for The Jacksons An American Dream','Beatles Cavern Club Brick','Billie Jean Jackson Letter','Blair & Brown Old & New Labour','Blair Brown & Livingstone Summer of Discontent','Blair Bush & Bin Laden Walking the plank','Blair EU Royal Commission','BOY GEORGE 1983 - OUT NOW','BOY GEORGE ICON - OUT NOW','Browns Treasury Model NHS','Bush Blair & Clinton Special Relationship','Bush presidential difficulties','Carry On Camping','CHER 1989 (A1)','CHER 1989 XXL','CHER 1994 - OUT NOW','Clinton & Bush Weight of the World','Craig David Signed Guitar','Dads Army Number 1','Dont Tell Him Pike!','European Union Refugees & Politicians','FRANCIS ROSSI - STATUS QUO 1979','FRANCIS ROSSI - STATUS QUO 1986','George Bush President','Gordon Brown & Charles Kennedy','Gordon Brown & Tony Blair Gods','Gordon Brown Education','Gordon Browns NHS','Griegs Piano Concerto Number 1','Handles For Forks!','I Knew You Were Cheating Boycie! Number 1 - Unframed','I Knew You Were Cheating Boycie! Number 3 - Framed','I Told You Rodders! (XL) - Number 10 - Framed','Im Mandy Squeeze MeMandleson & Ashdown','Jackson 5 1981 Tour Document','James Bond & George Smiley','John Cleeses Bentley including lunch with Mr Cleese','JOHNNY ROTTEN 1983 - B&W','JOHNNY ROTTEN ICON (XL)','JOHNNY ROTTEN MANCHESTER','Johnny Rotten Manchester Number 5 - Framed','JOHNNY ROTTEN NORWAY 1977 - Black and White','Johnny Rotten Norway Number 1 - Unframed','Johnny Rotten Washington Number 5 - Framed','JOHNNY ROTTEN WASHINGTON, DC','Labour & European Union','LONG LIVE HOOKY STREET!','Minder Er Indoors Clapperboard','Monty Python and the Holy Grail French helmet','Morecambe & Wise','Nuclear Weapons','Original G Wiley Fork Handles Script','Osama Bin Laden The Mighty Oz','PLAY IT NICE AND COOL SON COLOUR','PLAY IT NICE AND COOL SON XL COLOUR','Prime Minister Blair','Rare 1971 G. Wiley script Elizabeth Ah Ha','Ronnie Barker signed Fork Handle','RONNIE BARKERS JACKET','Spike Milligan Art','Star Trek Arena','Star Trek Elaan of Troyius','Star Trek II: The Wrath of Khan Starfleet Phaser','Star Trek The Man Trap','Star Trek The Tholian Web','Star Trek V & VI Starfleet Phaser','Star Trek V Scotty Flashlight','Star Trek VI The Undiscovered Country Klingon Disruptor Pistol "Shotgun-style"','Star Trek VI: The Undiscovered Country Klingon Disruptor Pistol','Star Trek: The Next Generation Medical PADD -','Steptoe & Son Number 1','The Bath','The Blood Donor','The Ministry of Silly Walks Number 1','The Pythons Silly Walks Number 1','This Time Next Year Number 6 - Framed','This Time Next Year Well Be Millionaires! Number 1 - Unframed','This Time Next Year Well Be Millionaires! Number 125 - Unframed','Tommy Cooper Fez','Tommy Cooper Letters','Tommy Cooper signed card','Tony Blair & Gordon Brown Election','Tony Blair & The Euro','Tony Blair Abide with Me','Tony Blair Church of England','Tony Blair European Union Chasing','Tony Blair Public Spend','Tony Blair Saviour of Kosovo','Tony Blair Virtual Education','Tough on crime','Two Ronnies The Pipe Band','Well Meet Again','Well Meet Again No 1 of 500','Wembley Rules sign','World Money','XXL JOHNNY ROTTEN PARADISO AMSTERDAM 1977','YOU INVADED POLAND! (COLOUR)','YOU KNOW IT MAKES SENSE! - B&W (M)','YOU KNOW IT MAKES SENSE! - COLOUR (M)' ]; $('#our-products .typeahead').typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'products', limit: 20, source: substringMatcher(products) });