How do I go about deleting the selected option (highlighted option) from a select box (drop-down list)?
Expected result: Once a selection has been made from the select box, at the click of the button “Delete” the selected option.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<select id="drop1" id="choices">
<option value="Red">Red</option>
<option value="Blue">Blue</option>
<option value="Yellow">Yellow</option>
<option value="Green">Green</option>
<option value="Orange">Orange</option>
<option value="Black">Black</option>
</select>
<input type="button" value="Delete" name="delete">
</body>
</html>
You can add a javascript function: