Stopping google translate from translating datepicker
http://jsfiddle.net/tkRaQ/51/ The "addClass" here: $(".datepicker").datepicker().addClass('notranslate'); doesn't fix it.... (google translation stops the selection of dates from working) For some reason the other code fixes it: $("#fix").click(function() { $('.ui-datepicker').addClass('notranslate'); }); Is there a way of stopping the translation without #fix.click? Your first line is adding the notranslate class to the input element that you're triggering the datepicker from. The datepicker UI elements are different from the input field, and get created automatically at the end of the