Javascript validation : Date Comparision not working
In most of the web application , Javascript is one of the must needed scripting language. There are some problem happens when you will write logical code in javascript like if condition, for loop etc.
In some case when you are working around dates you need to compare two dates. What you are doing is take value of date using Element id or Element name using getElementById or getElementsByName. and than compare it using '>' or '<' operator. At the end you will not get result of comparison as expected. Look at the below code which is almost similar to what you had written.
var date2 = document.getElementById('date2').value;
if(date1>date2)
{
alert("date1 is greater than date2!");
}
Its because you are comparing two strings not two dates. You have to say javascript that you want to compare two dates. What you are missing is convert the value of elements in to Date object. Look at below code to convert string in to date object.Now if you will compare two values than it will compare two dates and gives correct result.
var date2 = new Date(document.getElementById('date2').value);
if(date1>date2)
{
alert("date1 is greater than date2!");
}
To know more about programming,JavaScript issues,jQuery,MYSQL database,php info,php editor,programming php,Open-source,php help and php script , subscribe to our feed by entering email address below. You will get updates via email about every tutorial posted on this site . It will not take more than a sec.
-
http://www.ubervu.com/conversations/www.programmingfacts.com/2009/12/29/javascript-validation-date-comparision-not-working/ uberVU – social comments



I am