> So, my question is, how can I combine my functions that I already have > created, and have it work with jQuery, so that it can look for a > specific class, which contains the ISO date, and replace that?
If you used markup like this:
<span class="ISODate">2008-06-05T20:35Z</span>
You could replace the ISO dates with another format using this:
$("span.ISODate").each(function(){
$(this).text(getTFID($(this).text()));
});

