I've been using this datepicker in my code for a while now. Recently, I made some changes to the HTML and added AJAX calls. However, when I click on the input field, the datepicker doesn't show up. It seems like it's been added to the DOM correctly because I can see it in Firebug, but it's not visible as if something is overlaying it. I've checked for z-indexes but couldn't find any.
<input type="text" id="inputfield" />
<script type="text/javascript"> $("#inputfield").datepicker({minDate: +1});</script>
This issue only came to my attention today, so it's possible that Google may have changed something in the jQuery repository files. I'm currently using jQuery 1.4.2 & UI 1.8.2. What could be causing this problem?
Thank you