jquery-timeago icon indicating copy to clipboard operation
jquery-timeago copied to clipboard

:clock8: The original jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. "4 minutes ago").

Results 48 jquery-timeago issues
Sort by recently updated
recently updated
newest added
trafficstars

I personally don't like the format that `toLocaleString()` returns (`24/10/2019 2:36:56`). It would be nice if there was an option to pass its options like `dateStyle: 'long'`, `timeStyle: 'short'`, etc....

Cross-pull-request from NodeBB/NodeBB/pull/6522

As per issue discussed in rmm5t/jquery-timeago#323, locales cannot be loaded using CommonJS or AMD loaders reliably, since the *jquery-timeago* isn't specified as a required dependency. This pull request fixes all...

Addition to allow tense class added to the element so that CSS styling can be applied based on whether it is in the future or the past.

Modified words var so it uses a table lookup to decrease the cost of running timeago calculations. This should result in a notable speed increase. Instead of relying on a...

Displaying a lot of dates together and using the cutoff setting produces a very inconsistent look. (Some are words, some are dates) This will allow you to benefit from the...

I was needing to use the time data from this plugin for other calculations, and since it had already calculated seconds, hours, days, and years, I exposed that data along...

My use-case is an activity feed with only 5 items. However, over the lifetime of the web application, thousands of items pass through the feed. It was not ideal to...

Adds explicit untimeago() function that removes all timeago timers and data. Hooks jQuery.events.special.remove to automatically call untimeago() when elements are removed from the DOM Note, this does not handle automatically...