Invoke function on datepicker cell hover
Hi
I'd like to be able to present information to users as they hover over
individual dates. It looks like datepicker doesn't support this out of
the box so I tried the following (with a few variations)
var cellHover = function () {
$(".ui-datepicker-days-cell").hover(
function () {
$("#log").append("foo in");
},
function () {
$("#log").text("Debug: ");
}
);
}
$(document).ready(addDatePicker);
$(document).ready(cellHover);
This doesn't appear to work though. If anyone has any suggestions for
how I might achieve this effect I'd be very grateful.
Paul