ydharia

I want to disable some list of dates […]

ydharia
4 years ago
i want to disable some list of dates and previous dates.

i tried to disable but no t working. in this page single-hotel-right-sidebar.html

my code for disable :
in custom.js

var disabledDates = ["2019-05-14"];
jQuery(document).ready(function() {
"use strict";
$(".ed-datepicker input.form-control").focus(function() {
$(".sbOptions").css("display", "none")
}), $(".ed-datepicker").datepicker({
beforeShowDay: function(date){
var string = jQuery.datepicker.formatDate('yy-mm-dd', date);
return [ disabledDates.indexOf(string) == -1 ]
},
minDate: 0,
format: "mm/dd/yyyy",
autoclose: !0,
orientation: "top auto",
todayBtn: "linked",
todayHighlight: !0
});
});

minDate: 0,
also not working for disable previous dates