09-14-2020, 06:51 PM
One more change. Use your custom article removing/case insensitive sort for the artist list.
replace
with
replace
Code:
filteredArtists.sort();
with
Code:
filteredArtists.sort(function(a, b) {
a = removeArticles(a).toLowerCase();
b = removeArticles(b).toLowerCase();
return a > b ? 1 : (a < b ? -1 : 0);
});