javascript - Convert date to elapsed time -


right have date value so:

2011-04-29t07:08:22.000z

i want turn in live updating (no page refresh) elapsed time representation.

what efficient way this?

use jquery timeago, it's , easy.

you initialization :

jquery(document).ready(function() {   jquery("abbr.timeago").timeago(); }); 

and everywhere want time displayed :

<abbr class="timeago" title="2008-07-17t09:24:17z">july 17, 2008</abbr> 

Comments