As you can see from the title, I am wondering if there is a way in plain javascript to select an element from option fields by some value. I know I can do it with jQuery like this - option[value="'+ myObject.value+'"]
but I want to know if I can do the same with javascript without using some loop to find the index and then select it by its value.
P.S. I guess jQuery is doing exactly this^ but I am not sure.