how do i check/validate in jquery whether end date [textbox] is greater than start date [textbox]?
|
Just expanding off fusions answer. this extension method works using the jQuery validate plugin. It will validate dates and numbers
To use it:
or
|
|||||||||||
|
That should do it I think |
|||
|
|
|
Reference jquery.validate.js and jquery-1.2.6.js. Add a startDate class to your start date textbox. Add an endDate class to your end date textbox. Add this script block to your page:-
Hope this helps :-) |
||||
|
|
|
I was just tinkering with danteuno's answer and found that while good-intentioned, sadly it's broken on several browsers that are not IE. This is because IE will be quite strict about what it accepts as the argument to the
This causes the code to take the "compare dates" path and it all goes downhill from there (e.g. Therefore after consideration I modified the code to give priority to the "numbers" path over the "dates" path and validate that the input is indeed numeric with the excellent method provided in Validate numbers in JavaScript - IsNumeric(). In the end, the code becomes:
|
|||
|
The date values from the text fields can be fetched by jquery's .val() Method like
I'd strongly recommend to parse the date strings before comparing them. Javascript's Date object has a parse()-Method, but it only supports US date formats (YYYY/MM/DD). It returns the milliseconds since the beginning of the unix epoch, so you can simply compare your values with > or <. If you want different formats (e.g. ISO 8661), you need to resort to regular expressions or the free date.js library. If you want to be super user-fiendly, you can use jquery ui datepickers instead of textfields. There is a datepicker variant that allows to enter date ranges: http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/ |
|||
|
|
|
I like what Franz said, because is what I'm using :P
|
|||
|
|
Hope this will help :) |
||||
|
|
|
If the format is guaranteed to be correct YYYY/MM/DD and exactly the same between the two fields then you can use:
As a string comparison |
|||||||
|