Jqerrt obtiene todo img alt de la cadena
$("#mycontent img").each(function () {
var altText = $(this).attr("alt");
$(this).replaceWith(altText);
})
Borma