$(document).on("DOMNodeInserted", ".ms-webpart-zone, .ms-wiki-columnSpacing", function () {
//Para los que sean de tipo btn
$("td.ms-cellstyle.ms-vb2:contains('btn')").not(".calculadoCambiado").each(function() {
var texto='
'+$(this).text()+'
';
if(texto.toLowerCase().indexOf('btn btn-')==-1)return true;
$(this).html(texto);
$(this).addClass("calculadoCambiado");
});
//Para los que tengan la clase checkCalculadoPQ
$("td.ms-cellstyle.ms-vb2:contains('checkCalculadoPQ')").not(".calculadoCambiado").each(function() {
var texto=''+$(this).text()+'
';
if(texto.toLowerCase().indexOf('checkcalculadopq')==-1)return true;
$(this).html(texto);
$(this).addClass("calculadoCambiado");
});
});