Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to check 2 date fields and compare to see which date is ahead, behind or the same

I am trying to implement a validation which should compare two dates and give an alert message.

entrydate is a text feild in our ASP page and so is vdata. I should check and make sure that vdata is always greater than or equal to entrydate. The code below is not working.

Please help to identify what the problem is with the this code:

if(document.Step2.entrydate.value <= document.all(vData).value)
share|improve this question
This is not the solution, but don't use document.all: stackoverflow.com/questions/7693542/… – The Nail Feb 24 '12 at 21:39
not enough details by far. what does console.log(document.all(vData)) give you? – mindandmedia Feb 24 '12 at 21:40

marked as duplicate by Bill the Lizard Feb 27 '12 at 3:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

The problem is that the text in an input box is just that, text. You are trying to compare dates, so you will need to convert those strings into dates and compare the dates.

share|improve this answer

The problem is that the value of a textfield is a string. So you're basically comparing strings, and not dates.

You would first need to parse your string into an actual Date object before you can do a reliable comparison. How you would do that depends on the format of the data

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.