My scenario:
- I have a textbox that the user enters text
- The textbox has an onblur function that tries to select a value from a dropdownlist (if it exists) based on the textbox input
This works perfectly fine if the textbox value is the same case as the dropdownlist value. But I want it to be case insensitive.
So if the user types "stackoverflow" then I want it to select from the dropdownlist "StackOverflow". How can I do this via jQuery?