How to select element with class MyClass and value MyValue, but without using each? I tried something like:
$(".MyClass").find("[value='MyValue']")
$(".MyClass[value='MyValue']")
This is example: http://jsfiddle.net/HQaG5/ It works if i use hard coded value for select element.