I have the following Element:
<select id="color" name="colorId" class="btn secondary">
<option value="347366" selected="selected">Purple</option>
<option value="56634">White</option>
</select>
And I want to find which option is selected:
The following give me only the default:
document.querySelector('#color option[selected="selected"]')
(I know how to do it with JQuery but, I can't use JQeury or any other similar library)
document.getElementById('color'), or do you have to usecss-selectors? – Burhan Khalid Jan 15 at 8:36