update DOM input values convert_input_to_span remove_ids_from_elements.js
$("#confArtigos").find('*').removeAttr('id');
//update dos valores dos inputs nos artigos pois os alterados entretanto ainda não fazem parte do DOM
$("#contentArtigos").find("input").each(function () { $(this).attr("value", $(this).val()); });
$("#confArtigos").find("input").each(function () {
$(this).replaceWith($("<span />").text($(this).val()));
});