Answer the question
In order to leave comments, you need to log in
How to fix datepicker work?
http://test.jethunter.net - if you start filling out the form, a datepicker will appear, in which if you click on the arrows (previous month / next month), the datepicker disappears.
Looked here:
stackoverflow.com/questions/22768094/bootstrap-3-p... and here
stackoverflow.com/questions/18607414/jquery-datepi...
but can't figure out what's wrong .
How to fix?
Answer the question
In order to leave comments, you need to log in
After losing focus by input, this timeout code hides your datepicker:
$('#dateDepartureInput, #dateArrivalInput').on('focus', function () {
$(this).siblings('.js-datepicker-wrap').removeClass('hidden');
}).on('focusout', function () {
var $this = $(this);
setTimeout(function () {
$this.siblings('.js-datepicker-wrap').addClass('hidden');
}, 500);
});
$('#dateDepartureInput, #dateArrivalInput').datepicker({
showOn: "focus"
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question