fires when the user changes time in the selector
date | Date | the selected date |
myCalendar.attachEvent("onTimeChange", function(date){
// your code here
var newHours = date.getHours();
var newMinutes = date.getMinutes();
});
Back to top