Turn posted by to posted on in Captavi platform blog tool
if ($('#blogLeft .small').length){
$("#blogLeft .small").each(function() {
var str = $(this).text();
if (str.indexOf("Posted by:") > -1) {
str = "Posted on "+str.replace("Posted by: ", " ");
return $(this).text(str);
};
});
}