DatePicker working in Firefox/IE/Safari but not Chrome

DatePicker working in Firefox/IE/Safari but not Chrome

Hi all-

I have a form with Datepicker. The Datepicker field works perfectly in Firefox and Safari but not in Chrome (Mac). I haven't been able to solve it.


Can anyone help me spot the problem?

  1. <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/smoothness/jquery-ui.css" />
  2. <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js">
  3. </script>
  4.     <script>
  5.     jQuery(function() {
  6.        jQuery('#inf_custom_Date').datepicker({
  7. changeMonth: true,
  8.             changeYear: true,
  9. minDate: 0, 
  10. maxDate: +20,
  11. showOtherMonths: true,
  12.       selectOtherMonths: true}
  13. );
  14.     });
  15. </script>