Hi, I using jquery how do i remove the one of the elements of the select dropdown where the value
<option value=" ">undefined</option>
i tried
$("#subType option[value=' ']").remove();
$("#subType option[value='']").remove();
None of them worked.
Please advise.