I have a query. I want to get element in java script using it's ID. I can use getElementById. But the problem is that, the ID could be case in sensitive. i.e.
Suppose my ID = "Test"
then I want to get the element with IDs "Test", "test", "tEsT", "TeSt" and all other case combinations. There is a surety that there would be only one element with the ID among all of above.
Can you please help how can I get such element such that I can get the element case insensitively?
Thanks in advance.