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
Get rid of the this. before $(".timesheet-daily-input") and use $(this).val() to get the value of the inputs.
this.
$(".timesheet-daily-input")
$(this).val()