Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
if (userDate.getHours() >= sysDate.getHours()) {
     alert('continue');
} else {
     alert('time is up');
}

I need to compare the system time with user entered time.By the above method i am able to compare the hours but i also need to compare minutes.pls suggest a suitable method for this

share|improve this question
1  
what do you mean with "user entered time" ? Is there a field where the user can enter time? – Bart Friederichs Jan 2 at 10:02
.getMinutes()...? – Juhana Jan 2 at 10:07
yes the time picked by user it is in 24hr format something like 10:00:00.Also i am picking a date from jsp page and concatenated the date and time using javascript. – divyanair Jan 2 at 10:10
1  
Comparing minutes? Is that the desired granularity of the comparison? What about dates? If userDate has a value of 01.01.2013 00:01, and sysDate is 02.01.2013 23:59, your comparison would still succeed even though the time would be up by two minutes... – Lucero Jan 2 at 10:10
no only if dates are equal,i need to compare the time – divyanair Jan 2 at 10:12

closed as not a real question by Lucero, Juhana, Cerbrus, Sameer, Mark Jan 2 at 11:43

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

If both userDate and sysDate are Date object, you can use getTime() method, like the following:

if (userDate.getTime() >= sysDate.getTime()) {
     alert('continue');
} else {
     alert('time is up');
}
share|improve this answer
this worked.thanxs – divyanair Jan 2 at 10:30

As shown here: How do you get a timestamp in JavaScript?

you can use Date.getTime() to get milleseconds since Epoch. Then use simple integer math to compare:

if (userDate.getTime() >= sysDate.getTime()) {
     alert('continue');
} else {
     alert('time is up');
}
share|improve this answer
could you pls site an example for comparing – divyanair Jan 2 at 10:17

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