I'm using jQuery UI, specifically Datepicker and Autocomplete, as follows:
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
$("#note_date").datepicker({
maxDate: 0,
});
$("#note_name").autocomplete({
source: ["1", "2"],
select: function(event, ui) {
}
});
They work fine in Firefox 3.6.8, but don't work at all in Google Chrome 5.0.375.126 and Safari 5.0 (6533.16). I thought jQuery UI stuff was supposed to work in these browsers? What could be causing them not to work? Thanks for reading.