I've been trying to make time stamps human readable on this project I am working on by using the timeago plugin for jquery.
Here is the html code I have;
<dd id="dateJoined">2016-08-04T22:30:59.920516Z</dd>
and the following is a snippet from the script I am trying to get to work;
$('dd').addClass('timeago');
$("dd.timeago").timeago();
There are no syntax errors but for some reason it does not work.