I'm trying to implement a event calendar using jquery-ui's datepicker. I've successfully installed the datepicker and it shows up and working. the problem appears when I try to register the beforeShowDay
handler. Like this:
$('#datePicker').datepicker({ beforeShowDay : function(){ }} );
I receive the following error in jquery-ui -file: ba is undefined
.
when I output something int the function, the first four times it outputs but then I receive the error.
$('#datePicker').datepicker({ beforeShowDay : function(){ console.log('test') }} );
Output:
// test
// test
// test
// test
// ba is undefined
if anyone has a clue what's the problem, please help.