Hai
I am creating a custom DatetimePicker control. I just want to know how to get the selected calendar management date (asp.net control) using jQuery. I used this code, but it is wrong.
$(document).ready(function() {
$(".UserCalender").click(function () {
var a = $('.CalenderDiv:selected').text();
alert(a);
});
});
What happened to this?
source
share