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?
- <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.0/themes/smoothness/jquery-ui.css" />
- <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js">
- </script>
- <script>
- jQuery(function() {
- jQuery('#inf_custom_Date').datepicker({
- changeMonth: true,
- changeYear: true,
- minDate: 0,
- maxDate: +20,
- showOtherMonths: true,
- selectOtherMonths: true}
- );
- });
- </script>