Datepicker beforeShowDay not working
Hello to all,
I am having problems with
beforeShowDay event in Datepicker.
In IE the error is: '0' is null or not an object
IN FF the error is: F is undefined
Below is a very simple example that reproduces the problem
. Let me know if you need me to post it somewhere on the web, but its just a simple and straight-forward HTML file.
Thanks is advance for any help provided.
$(document).ready(function() {
$("#datepicker").datepicker({
beforeShowDay: function(date) {
alert(date);
}
});
});
</script>
</head>
<body>
<div id="datepicker"></div>
</body>
</html>