what is the best way to check is a drop down contains a value which isnt null.
<select class="dropinput" name="Finish1" id="dropFinish1" tabindex="10" disabled="disabled">
<option value=""></option>
</select>
How to check the above drop down contains no values?
This will check if the select box contains zero options that have a value different than “” (empty).
So the following HTML will be seen as empty in the above jQuery:
The following HTML will not be seen as empty:
JSFiddle demo