Booking Calendar - Dynamic Date Update

I have a booking calendar element I’ve added here on the BOOKING page:

Webflow - JMAK (NOTE: You have to click the green BOOK WITH J.MAK button on the top right to see the page I’m talking about.)

And the client would like for the second calendar to update once the user inputs the Check In Date. So if the user put March 3, 2019 into the Check In Date, the second calendar (Check Out Date) would jump to that date for ease of use.

Thanks in advance for any help!

Apologies if this is the wrong forum… should I try this in a Javascript forum instead? Is JQuery part of Webflow, or is that something I’d need to include somewhere? Thanks!

Page Footer Code:

<script>
$('.html-embed-3').on('change', 'input', function() {
  $(this).nextAll('input').first().val(this.value);
});
</script>
2 Likes

That worked! You’re amazing–thank you, Sam!