I am using a e-commerce package and there are sections my client wants disable to hidden. The problem is the package has all their labels under the same class and I am not sure how I can target certain ones in order to hide or disable them.
I have 5 and would like to hide the 3rd one, lets say. They are in a table to so it looks just like this:
<td><span class="lable">Description</span></td>
any suggestions?
Prefer the the list selection methods like
eq()to the non-standard selectors like:eq. Using the jQuery selectors makes the browser fall back to the relatively slow Sizzle selector library instead of the fast nativequerySelectorAll()support built into modern browsers.