Question

I found a nifty little time-to-text jQuery plugin called timeago.js (think Twitter timestamps.) It's not a complex plugin, but it saves good dev time, and I especially like that it auto-updates.

Only problem is, I need this functionality to work for dates in the future, not just the past. (i.e. "timeuntil.js"?)

Has anyone come across a plugin (or they're own solution) that emulates the functionality described?

Was it helpful?

Solution

Um... Just change "ago" to "from now" or whatever and flip the order of the dates

[edit] Or just bother to read the documentation a little bit :)

jQuery.timeago.settings.allowFuture = true;

OTHER TIPS

Try out momentjs, it's far better than any other js date libraries out there

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top