I have two input fields: one with a start date and one with an end date. How can I automatically set the end date as the start date + 1 day when I enter the date in the first field?
My code is as follows:
<form> Start: <input type="text" name="date_start" id="datepicker0"> Stop: <input type="text" name="date_stop" id="datepicker1"> </form>
source share