I have a nice legenda below my datepicker and it works fine, until you click on next month. I added the link because it is difficult to explain, click on the tab "Prijzen 2013" and than click on periode toevoegen to add a datepicker.
https://www.huurhulp.nl/wijzigen/wijzigen.php?wijzigen_adv=4&code=321fa6715e552e9bd495753f44b04db8
This is the function that does the job (beforeshow in the datepicker):
function insertMessage() {
var legenda = '<div class="legenda"><table cellpadding="0" cellspacing="0" style="font-size:11px;color:silver;"><tr><td>Let op! Overlap in afwijkende prijzen is niet mogelijk.</td><td>Gesloten: </td><td style="background-color:red;width:15px;"></td>'
legenda = legenda + '<td> Afwijkende prijs:</td><td style="background-color:#00A800;width:15px;"></td></tr></table></div>';
clearTimeout(insertMessage.timer);
if ($('#ui-datepicker-div .ui-datepicker-calendar').is(':visible')){
$('#ui-datepicker-div').append(legenda);
}
else {
insertMessage.timer = setTimeout(insertMessage, 10);
}
}
i tried this, but doesn't work:
$('#ui-datepicker-div').delegate('.ui-datepicker-prev, .ui-datepicker-next', 'click', insertMessage);