I have a datepicker which on clicking the date I'm doing some stuffs. This was working when I was using the older jQuery UI version but after upgrading to the latest version I'm getting the issue. If you inspect the datepicker you will see that every cell has class 'ui-state-default' which is the one that I'm clicking on.
$(document).on("click", ".ui-state-default", function(){
alert("Inside");
});
This click events doesn't work now with the latest jQueryUI.
I'm using the latest jQuery and the jQuery UI.
jquery-1.9.1.min.js
jquery-ui-1.10.0.custom.min.js
Can anybody help me out on this?