inline Datepicker IE 6 & 7 Probloem?
I am having trouble with the latest ui.datepicker plugin when I try to
make the datepicker inline. It works in all versions of firefox, but
not in IE 6 or 7. Was hoping someone either knows of this and a
solution for it?
How it is set up:
$("#inLineDatePicker").datepicker({
mandatory: true,
dateFormat: "yy-mm-dd",
onSelect: function(date) {
alert(date);
}
});
The html code:
<div id="inLineDatePicker" style="auto; float:left;"></div>