jqerrt получить все img alt от строки
$("#mycontent img").each(function () {
var altText = $(this).attr("alt");
$(this).replaceWith(altText);
})
Borma