I am copying the value of a datetime-local input (date_ini) to another one once the user types in the first one (date_ter). However I would like to be able to add 20 more minutes to the result in the second input (date_ter) How could I do it?
$("#fecha_ini").keyup(function(){
var value = $(this).val();
$("#fecha_ter").val(value);
});