JBZoo
JBZoo copied to clipboard
Время по умолчанию (от и до) дать возможность задать
https://github.com/JBZoo-CCK/JBZoo/blob/b396db9fa585abf038134dd79470728b353a8b3e/src/packages/jbuniversal/jbuniversal/cart-elements/shipping/courier/courier.php#L176
- Желательно также дать возможность сделать поле readonly
- Ограничить промежуток выбора в календаре
- Подумать над валидацией даты в RU формате (d.m.y)
jQuery(document).ready(function() {
jQuery.datepicker.setDefaults(jQuery.datepicker.regional['ru']);
jQuery('.calendar-input').datepicker({
dateFormat: 'yy-mm-dd',
constrainInput: true,
minDate: "+6",
maxDate: "+15"
});
jQuery(".zoo-calendar").on("click", function(){
jQuery(this).siblings("input").datepicker("show");
});
jQuery(".jsJBCartShipping .calendar-input").prop('readonly', true);
});
</script>```