$(document).ready(function() {
if (typeof AirDatepicker !== "undefined") {
new AirDatepicker('#air-datepicker', {
autoClose: true,
dateFormat: 'dd.MM.yyyy',
onSelect({ date, formattedDate, datepicker }) {
console.log('date='+formattedDate);
console.log('date='+date);
$('.loader-gif').show();
$('.getSelectContainer').html('');
let link = '/kalendar-meropriyatiy/?DATA_PROVED='+formattedDate;
$.ajax({
url: link,
method: 'get',
data: {
AJAX: 'Y'
},
success: function(response) {
console.log(response);
const text = response;
const html = document.createElement('div');
html.innerHTML = text;
$('.loader-gif').hide();
$('.getSelectContainer').html($(html).find('.getSelectContainer').html());
initScripts();
}
});
},
});
}
});