$.now() gives me the time as miliseconds. I need to show it something like hh:mm:ss
How can I do that in Jquery?
|
How can I do that in Jquery? |
||||
|
|
|
|||||||||||||
|
|
I'd suggest just using the Javascript Date object for this purpose.
Edit: I just came across the method below, which covers formatting issues such as the one mike-samuel mentioned and is cleaner:
|
|||||||||
|
|
JSFiddle example here The jquery now is nothing but The $.now() method is a shorthand for the number returned by the expression
from jquery http://api.jquery.com/jQuery.now/ and follow this link |
|||
|
|
or
The |
||||
|
|
|
|||
|
|
|
jQuery doesn't have date formatting. You can roll your own with the JavaScript |
|||
|
|