Skip to content

Instantly share code, notes, and snippets.

@jacekd
Created April 8, 2013 04:29
Show Gist options
  • Save jacekd/5334241 to your computer and use it in GitHub Desktop.
Save jacekd/5334241 to your computer and use it in GitHub Desktop.
quick convert to date Test
$(".created_at").each(function() { t = new Date($(this).text()); t.setTime(t.getTime() + (120*60000));t = t.toLocaleString(); $(this).text(t); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment