I need to find the QUANTITY of all of the instances of ONLY the <li style="display:none;"> UNDER ONLY the <ul id="bob">, as I will have other <li> pieces throughout document:
e.g.:
<ul>
<li> a </li>
<li> b </li>
<li> c </li>
</ul>
<ul id="bob">
<li style="display:none;"> 1 </li>
<li style="display:none;"> 2 </li>
<li style="display:none;"> 3 </li>
<li style="display:inline-block;"> 4 </li>
<li style="display:inline-block;"> 5 </li>
<li style="display:inline-block;"> 6 </li>
</ul>
The amount of <li> are dynamically generated in my script, so it's not an obvious, visible number like '3' in this case.