| Author: Reach2Shaik 07 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
Hi,
refer these links http://www.dotnetspider.com/forum/175759-compare-date-javascript.aspx http://www.dotnetspider.com/resources/21282-Comparing-Dates-JavaScript.aspx
Don't forget to rate this answer, if it is helpful... Regards Shaik
|
| Author: Deepika Haridas 07 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
Hello,
You can check resources section for that.
Thanks & Regards, Deepika Editor
If U want to shine like a SUN..First U have to burn like the SUN!! Need a Guide? Join my mentor program..
|
| Author: Nikhil Gaur 07 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
look at the following link
http://www.dotnetspider.com/resources/21282-Comparing-Dates-JavaScript.aspx
Join this campus group http://www.dotnetspider.com/sites/637/-ecb-aspdotnet.aspx
Thanks & Regards NIks My Software and Web Development Experience
|
| Author: Shameer 08 Nov 2009 | Member Level: Silver | Rating:  Points: 2 |
var myDate=new Date(); myDate.setFullYear(2009,0,08); var today = new Date();
if (myDate>today) { alert("Today is before 08th January 2009"); } else { alert("Today is after 08th January 2009"); }
|