Date Picker Date change while using Google Translator
add notranslate
class in jquery.ui.datepicker.js
with class ui-helper-clearfix
.
when you can't / don't want to change the jQuery UI datepicker code, you could also use the beforeShow callback to add the notranslate
class:
beforeShow: function(input, inst) {
inst.dpDiv.addClass('notranslate');
}
tested with version 1.12.0