function getreminderview(month,year){ $.ajax({ type: "POST", dataType: 'json', url: '/reminders/getmonthview', data:"month="+month+"&year="+year, success:function(response){ if(response.returnvalue=="valid"){ reminders=response.data; for(var i=0;i tr > td > a"), function() { if(reminders[i]['day']==$(this).html() && reminders[i]['month']==month && reminders[i]['year']==year){
$(this).addClass("activecalender");
$(this).removeAttr('style');
$(this).removeAttr('title');
$(this).attr("title",reminders[i]['title']);
$(this).attr("isReminder",true);
}
else{
if($(this).attr("isReminder")=="undefined"){
$(this).removeClass('activecalender');
$(this).removeAttr('title');
}
}
});
}
}
else{
reminders=new Array();
}
},
error: function(XMLHttpRequest,textStatus){
}
});
}
through this function css is set .but when i click on date in datepicker css is removed.