This should be easy, but I can\'t seem to get it right.
var totalHours = 0;
this.$(\".timesheet-daily-input\").each( function () {
var inputValue = $(this).t
Couldn't find an exact solution, but changed my approach by selecting the parent div, and looping through it's child elements.
var totalHours = 0;
this.$("#timesheet-daily-entry-fields-container").children().each(function () {
var inputValue = $(this).val();
var hours = parseInt(inputValue);
totalHours += isNaN(hours) ? 0 : hours;
});