Hi, can some one suggest a way to compare values of 2 dates greater then, less then and not in the passed using javascript. They values will be coming from text boxes
Thanks
|
1
|
Hi, can some one suggest a way to compare values of 2 dates greater then, less then and not in the passed using javascript. They values will be coming from text boxes Thanks
|
|||
|
|
|
|
The Date object will do what you want - construct one for each date, then just compare them using the usual operators. I suggest you use drop-downs or some similar constrained form of date entry rather than text boxes, though, lest you find yourself in input validation hell. |
||
|
|
|
|
var date = new Date(); will give you todays date. setDate() will let you set new dates. var yesterday = new Date(); yesterday.setDate(...date info here); if(date>yesterday) will compare dates |
||
|
|
|
|
what format? If you construct a Javascript Date object, you can just subtract them to get a milliseconds difference (edit: or just compare them) :
|
||
|
|
|
|
In order to create dates from free text in Javascript you need to parse it into the Date() object. You could use Date.parse() which takes free text tries to convert it into a new date but if you have control over the page I would recommend using HTML select boxes instead or a date picker such as the YUI calendar control or the jQuery UI Datepicker. Once you have a date as other people have pointed out you can use simple arithmetic to subtract the dates and convert it back into a number of days by dividing the number (in seconds) by the number of seconds in a day (60*60*24 = 86400). |
||
|
|
|
|
The easiest way to compare dates in javascript is to first convert it to a Date object and then compare these date-objects. Below you find an object with three functions:
.
|
||
|
|
|
|
|
||
|
|