I'm trying to update the contents of all elements with the id tag of "row_total" to "$0.00". I can't figure out how to use each() correctly. Whats written below only updates the first instance of #row_total.
$(document).ready(function() {
$("#reset_row_totals").live('click', function() {
$('#row_total').each(function() {
$(this).html("$0.00");
});
e.preventDefault();
});
});
heres a jsfiddle --> http://jsfiddle.net/uxLZm/3/