$('body').on('change', '.timer_input', function() {
$('.tab-content .table_index').each(function() {
const sum = [].reduce.call(
this.querySelectorAll('input.timer_input'),
(res, node) => res + +(node.value || 0),
0
);
const id = $(this).find('.sum_total').text(sum).closest('.tab-pane').attr('id');
$('a[href="#' + id + '"].sum_total').text(sum);
});
}).change();