I have a bunch of tr, that represent a cart
<tr class="cart_row">
<td>Product</td>
<td>£20</td>
<td>2</td>
</tr>
<tr class="cart_row">
<td>Product 2</td>
<td>£50</td>
<td>1</td>
</tr>
This gets updated via ajax when an item has been added.
What I'm looking to do, is to detect when the cart has been updated, i.e a new <tr>
with a class of cart_row
or if the contents of an existing <tr>
has been updated
Can I do this with jQuery?
Thanks