I have 3 checkboxes with different id's:
<input type="checkbox" value="3.99" id="one" checked>
<input type="checkbox" value="5.99" id="two">
<input type="checkbox" value="7.99" id="three">
And also a field with total value of checked boxes:
<div id="total">3.99</div>
I need simplest jquery solution to calculate values on the go. For example if I check id's "one" and "two" the div "total" should look like this:
<div id="total">9.98</div>