Skip to content

Instantly share code, notes, and snippets.

@sdkester
Created November 15, 2010 03:06
Show Gist options
  • Save sdkester/676368 to your computer and use it in GitHub Desktop.
Save sdkester/676368 to your computer and use it in GitHub Desktop.
$(document).ready( function() {
$('.chkOptions').click(
function () {
var ntot = 0;
$('.chkOptions:checked').each(function () {
ntot += parseInt($(this).val());
});
$('#txtSavingsTot').val(ntot);
})
.change();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment