Pregunta

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?

¿Fue útil?

Solución

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;

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top