Thank you in advance for anyone who helps on this one.
We have a drop down with a blank option in the first .
<select id="Flags">
<option></option>
<option value="Corporate">Corporate.png</option>
<option value="Store2">Store2.png</option>
</select>
If the first blank option is selected, how can I remove it and select "Store2"?
If $('#Flags option[value=""]')
Then .remove();
and $('#Flags').val ("Store2")
Thank you very much in advance for any help.