Skip to content

Instantly share code, notes, and snippets.

View E6WeB's full-sized avatar

Scot E6WeB

View GitHub Profile
@alex-authlab
alex-authlab / flatpicker.js
Created March 9, 2021 04:37
flatpicker set check in date < check out date
// booking date check in > check out
$( document ).ready(function() {
var check_in = flatpickr(".in-date",{dateFormat: "d/m/Y",});
var check_out = flatpickr(".out-date",{dateFormat: "d/m/Y",});
check_in.element.addEventListener("change", function(){
check_out.set( "minDate" , check_in.element.value );
});