Hi i am using asp.net calender control
asp:updatepanel ID="Updatepanel1" runat="server">
<contenttemplate>
<asp:Calendar id="SchoolCalender" runat="server" OnDayRender="SchoolCalender_OnDayRender" CssClass="calender">
</asp:Calendar>
</contenttemplate>
</asp:updatepanel>
$(document).ready(function () {
$(".calender > tbody > tr > td a").hover(function () {
var date = $(this).html();
});
});
inside the jquery get date(only date). current month it's work fine .
But i am change the month (click purview month)jquery not working. what problem how to solve it.
and also current month date available inside <td><a> but tommorow date only place in td tag. why????
Go to the complete details ...