JSFiddle - React, Tailwind, and code Playground
HTML
<input type='checkbox' value='5' />
<input type='checkbox' value='5' />
<input type='checkbox' value='5' />
<input type='checkbox' value='5' />
<input type='checkbox' value='5' />
JavaScript
$('input[type=checkbox]').click(function(){
total = 0;
$('input[type=checkbox]:checked').each(function(){
total = total + parseInt($(this).val());
});
alert(total);
});