jqerrt obtient tout img alt de la chaîne
$("#mycontent img").each(function () {
var altText = $(this).attr("alt");
$(this).replaceWith(altText);
})
Borma