Documentation

onDateSelect

fires when a user selects a date.

void onDateSelect(date date){ ... };

Parameters

datedatethe selected date

Example

$$('calendar1').attachEvent("onDateselect", function(date){
    //... some code here ... 
});

See also

Back to top