Is there a way to retrieve a list of rows from a table where one cell has a value of 0.00 without using a loop in jQuery?
Preferably, with code that does not involve looping (avoiding the use of the each
statement).
<table id="products">
<tr><td>Name</td><td>Product</td><td>Price</td></tr>
<tr id="1"><td>gdfgdf</td><td>1</td><td aria-describedby="Price">0.00</td></tr>
<tr id="2"><td>gdf455g</td><td>2</td><td aria-describedby="Price">0.00</td></tr>
<tr id="3"><td>gdf43gdf</td><td>1</td><td aria-describedby="Price">6.50</td></tr>
<tr id="4"><td>gdf44g</td><td>2</td><td aria-describedby="Price">7.00</td></tr>
</table>
I am looking to extract the first two rows from the table where the price is 0.00.