I am using Joris de Wit time picker plugin.
I have multiple dynamic rows that require three time picker each. I have successfully created the multiple instance of bootstrap time picker in a single page.
$('.timepicker-input').timepicker({
maxHours: 24,
showSeconds: true,
showMeridian: false,
defaultTime: '00:00:00'
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://jdewit.github.io/bootstrap-timepicker/js/bootstrap-timepicker.js"></script>
<form action="" method="POST">
<!-- Each div will be generate from PHP loop,
and the i variable from the loop will append with id.
Thus each time id will be unique (Right now I am thinking that way, it can be done more efficiently) -->
<div class="input-group bootstrap-timepicker timepicker">
<span>1.</span>
<input type="text" class="form-control timepicker-input" id="desingTime1" >
<input type="text" class="form-control timepicker-input" id="devTime1" >
<input type="text" class="form-control timepicker-input" id="totalTime1" readonly disabled >
</div>
<div class="input-group bootstrap-timepicker timepicker">
<span>2.</span>
<input type="text" class="form-control timepicker-input" id="desingTime2" >
<input type="text" class="form-control timepicker-input" id="devTime2" >
<input type="text" class="form-control timepicker-input" id="totalTime2" readonly disabled >
</div>
<div class="input-group bootstrap-timepicker timepicker">
<span>3.</span>
<input type="text" class="form-control timepicker-input" id="desingTime3" >
<input type="text" class="form-control timepicker-input" id="devTime3" >
<input type="text" class="form-control timepicker-input" id="totalTime3" readonly disabled >
</div>
<button type="button" class="btn btn-primary">Submit</button>
</form>
Now my question is, How to load the summation of the first two time picker into the Total time field on each row.
I have searching this solution over days, and couldn't come up with any solution to perform operation on each row.
As I am just beginner to Javascript. Any suggestion/guidance will help me a lot.
Ignore my comment above, I hadn't realized the plugin allowed for values over 24 hours.
Please see the working example below. My example below will calculate all timespicker inputs in a row except for the last one so you can if you ever need to add more inputs it will automatically calculate those without having to edit the javascript.