I have 'ul > li'
to get all of the list items, but I need to only grab the items that contain a checkbox that's checked.
So you can see this visually, it looks like this:
<ul>
<li>
<input type="checkbox" checked="checked">
</li>
<li>
<input type="checkbox">
</li>
<li>
<input type="checkbox" checked="checked">
</li>
</ul>
I want to pull the 1st and 3rd item.
Thanks in advance.
So, I have