DatePicker and IE

DatePicker and IE

Hello,

Sorry for my bad english !

I am a newbie in jQuery. I have a big problem with IE and DatePicker. This code :

$("#datepicker").datepicker({
dateFormat: 'yymmdd',
minDate: '0',
maxDate: '+1Y',
onSelect: function(dateText, inst) {
document.getElementById('post_date_agenda').value = dateText;
}
});

Work great with Firefox and Chrome, but with IE, when i select a date, the DatePicker dissapear. The date selected is good, because when i click on 'Find (submit)' button, the result is send and good.

Thank you for your help.