A
abcd
This is more of a HTML/javascript question
I have a select control
<select>
<option value = "1"> abcd </option>
<option value = "2"> my Name </option>
<option value = "3"> your Name </option>
</select>
I am comparing the values of the text property of the select control....my
comparisions fails...how to handle that while comparing....
e.g.
var testString = "my Name"
how can I compare this with the option value for exact match....
any tips
I have a select control
<select>
<option value = "1"> abcd </option>
<option value = "2"> my Name </option>
<option value = "3"> your Name </option>
</select>
I am comparing the values of the text property of the select control....my
comparisions fails...how to handle that while comparing....
e.g.
var testString = "my Name"
how can I compare this with the option value for exact match....
any tips