Hi guys,
I have problem with the new version of the datepicker on ie6.
Apparently if the date picker is initialized before the body has
finished loading it crashes.
so i have added a $(document).ready and it works fine :
here is the code on 1679 of ui.datepicker.js
/* Initialise the date picker. */
$(document).ready(function(){
if (!$.datepicker.initialized) {
$(document.body).append($.datepicker.dpDiv);
$.datepicker.initialized = true;
}
});
and it fixes the problem for me.
bye.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---