aletiger
aletiger
I noticed the same problem with all browsers. Is there a way to solve this issue?
I investigated the problem. I think that is related to the fact that the input field has the focus and the calendar is always opened on the focus event. The...
@blackgrow If you are interested this should be a working solution. ` $('.datepicker').pickadate(); var $input = $('.datepicker').pickadate(); var picker = $input.pickadate('picker'); picker.on({ close: function() { console.log('Closed now'); $(document.activeElement).blur(); }, })...