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.

$.now() gives me the time as miliseconds. I need to show it something like hh:mm:ss

How can I do that in Jquery?

share|improve this question

6 Answers

up vote 12 down vote accepted
function formatTimeOfDay(millisSinceEpoch) {
  var secondsSinceEpoch = (millisSinceEpoch / 1000) | 0;
  var secondsInDay = ((secondsSinceEpoch % 86400) + 86400) % 86400;
  var seconds = secondsInDay % 60;
  var minutes = ((secondsInDay / 60) | 0) % 60;
  var hours = (secondsInDay / 3600) | 0;
  return hours + (minutes < 10 ? ":0" : ":")
      + minutes + (seconds < 10 ? ":0" : ":")
      + seconds;
}
share|improve this answer
+1 , for covering all use cases and nice usage of conditional operators – kobe Jul 9 '11 at 21:41
+1 Covering formatting issues. – vinod Jul 9 '11 at 21:45
@Barış V.: Note that this has nothing to do with jQuery. (Nor does it need to.) – T.J. Crowder Jul 9 '11 at 21:52
What about daylight saving time? Considering that all days have 24 hours is wrong, and this function will lead to incorrect times. – JB Nizet Jul 9 '11 at 22:36
1  
@Gabriel, you can combine my approach to get the formatting right with Vinod's use of the get methods thus: var hours = d.getHours(), minutes = d.getMinutes(), seconds = d.getSeconds(); return hours + (minutes < 10 ? ":0" : ":") + minutes ... – Mike Samuel Jul 9 '11 at 22:51
show 2 more comments

I'd suggest just using the Javascript Date object for this purpose.

    var d = new Date();
    var time = d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds();

Edit: I just came across the method below, which covers formatting issues such as the one mike-samuel mentioned and is cleaner:

    var time = d.toLocaleTimeString();
share|improve this answer
1  
+1 That's exactly what I was about to post. – FishBasketGordo Jul 9 '11 at 21:32
Nice, but if the time is 1AM you will get 1:0:0 instead of 1:00:00. – Mike Samuel Jul 9 '11 at 21:38
@vinod +1 nice and simple answer. – kobe Jul 9 '11 at 21:38

JSFiddle example here

http://jsfiddle.net/NHhMv/

The jquery now is nothing but

The $.now() method is a shorthand for the number returned by the expression

(new Date).getTime().

from jquery

http://api.jquery.com/jQuery.now/

and follow this link

Formatting a date in javascript

share|improve this answer
new Date().toString().split(' ')[4]

or

new Date().toString().match(/\d{2}:\d{2}:\d{2}/)[0]

The toString method is basically an alias for toLocaleString in most implementations. This will return the time in the user's timezone as opposed to assuming UTC by using milliseconds if you use getTime (if you use getMilliseconds you should be OK) or toUTCString.

share|improve this answer
With this getting exact difference in time is as simple as ever: (new Date(new Date(string) - new Date())).toUTCString().split(' ')[4] – sanmai Jul 10 '11 at 3:00

I'd suggest date-format jQuery plugin. Like this one or this one (I am using the former)

share|improve this answer

jQuery doesn't have date formatting. You can roll your own with the JavaScript Date object, or you can use a library that does it for you. DateJS is one such library, which provides a rich set of formatting, parsing, and manipulation functionality.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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