Does anyone know how can I removed the option from select base on the option value in jquery?
example:
<select name="group_select">
<option value="a">A</option>
<option value="b">B</option>
<option value="c">C</option>
</select>
For this case, I would like to removed B by just clicked on a button and without selected the option. Will this possible that I can just removed that option by just based on the oprion value "a"??