I am using a standard jQuery Datepicker and I need to modify the text in each TD based on some daily status information. I realize I can wire up the \"beforeShowDay\" event
$('.selector').datepicker({
beforeShowDay: function(date) {
/*some function to do before display*/
},
onChangeMonthYear: function(year, month, inst) {
/*some function to do on month or year change*/
}
});