For Better Performance Use Trim Function : $('.select').selectize({ openOnFocus: true, items: [''], score: function(search) { var score = this.getScoreFunction(search); return function(item) { return item.text.trim() .toLowerCase() .startsWith(search.toLowerCase()) ? 1 : 0; }; }, });