jquery-autocomplete
jquery-autocomplete copied to clipboard
Perhaps adjust matcher to default to case-insensitive matching
return new RegExp(typed, 'i');
I know you can override the matcher function at runtime through the settings, but this really tripped me up when I was first used the demo page to see if this solution was viable. My first impression was that something was broken, as I typed in "lon" vs "Lon" on the London example.
Good call.