jqerrt otrzymuj wszystkie IMG alt z ciągu
$("#mycontent img").each(function () {
var altText = $(this).attr("alt");
$(this).replaceWith(altText);
})
Borma