I have to compare todays date with calender date(picking date using date picker ajax).
If date difference is more than 7 days then generate alert.
var mydate = new Date();//Todays date
var theyear = mydate.getFullYear();
var themonth = mydate.getMonth() + 1;
var thetoday = mydate.getDate();
txtDate.value='04-Jul-2012';//date picker date in this format
1 Answer