TAG
JavaScript
Result
Run
License
<form> <select id="fruits"> <option value="Apple">Apple</option> <option value="Banana">Banana</option> <option value="Carrot">Carrot</option> </select> </form>
document.addEventListener("DOMContentLoaded", function() { const $elFruits = document.getElementById("fruits"); $elFruits.children[2].form.style.backgroundColor = "yellow"; });
Console
expand_less
License
License
by DevDic
Close