The question is how to format a JavaScript Date as a string stating the time elapsed similar to the way you see times displayed on Stack Overflow.
e.g.
- 1 minute ago
- 1 hour ago
- 1 day ago
- 1 month ago
- 1 year ago
|
The question is how to format a JavaScript e.g.
|
|||
|
|
|
I haven't checked (although it wouldn't be hard to), but I think that Stack Exchange sites use the It's quite easy to use the plugin, and it's clean and updates automatically. Here's a quick sample (from the plugin's home page):
|
|||
|
|
|||||||||||||
|
|
You might want to look at humanized_time_span: https://github.com/layam/js_humanized_time_span It's framework agnostic and fully customizable. Just download / include the script and then you can do this:
or even this:
Read the docs for more info. |
|||||||
|
|
|
from now, unix timestamp param,
|
|||
|
|
|
Changed the function above to
Otherwise it would show things like "75 minutes" (between 1 and 2 hours). It also now assumes input date is a unix timestamp |
|||
|
|
this will show you past and previous time formats like '2 days ago' '10 minutes from now' and you can pass it either a Date object, a numeric timestamp or a date string |
|||
|
|
|
Might be an overkill in this case, but if the opportunity show moment.js is just awesome! |
|||
|
|