On http://www.scottsdalecvb.com, I'm using jQuery UI's .datepicker() on a number of date text fields. Strangely today I noticed that the date fields in the Travel Tools box (right side of the page with the powered by Travelocity logo), stopped functioning correctly in IE8. They will open the calendar on focus and will allow you to click a date to fill in the box, however, the prev and next buttons don't scroll the calendar. No error is displayed in IE and they work fine in Firefox and Chrome.
I do use several date fields. In fact, if you click on events in the top bar, the drop down exposed two other text boxes which use datepicker() and are working correctly.
The code that is initializing the date fields is in /includes/scripts/widget.wct.js and reads:
var dateBoxes = $("input[class*=Date]", "#travelocity");
var opt = { minDate: new Date().setDate(dateDepart.getDate() + 1), maxDate: new Date().setDate(dateDepart.getDate() + 329), showOn: "both", buttonImageOnly: true, buttonText: "Choose date", buttonImage: "/includes/images/wct/calendar.gif"};
dateBoxes.each(function() {
$(this).datepicker(opt)
});
Any help would be appreciated.