I have a list of checkboxes when I check them I get the value and then I want to add them up but I can't seem to get me head around it.
example http://jsfiddle.net/zidski/w3mwkkh3/
$('body').on('click' , '.done' , function() {
var selectedCheckboxValue = "";
$('input.checkbox:checked').each(function() {
selectedCheckboxValue += $(this).val();
});
$('.filter-selected-count').text(selectedCheckboxValue);
});