How to change the cell color of a jquery datepicker
- by MazarD
Hi,
I have a jquery datepicker and I need to be able to change the background color for the selected cell date, I'm trying with something like:
$("#fecha").datepicker({
onSelect: function(value, date) {
alert(date.css());
}
});
hoping that the date parameter refers to the selected cell, but it doesn't…