I'm learning DOM and I'm trying to select an li within a div, where the div has an ID of 'essentials' I want to target all li within that div and change the background color. I was able to change the background color of the div itself, but can't seem to select just the li. Here's my code:
HTML
<ul>
<li>milk</li>
<li class="selected">honey</li>
<li>water</li>
<li>wine</li>
<li>beer</li>
</ul>
</div>
Javascript
document.getElementById('essentials').style.backgroundColor = 'yellow';