function deleteDomByHtml(html){
html=html.replace(/\s/g,'');
$("*").each(function(){
if(this.outerHTML.replace(/\s/g,'')===html){
$(this).remove();
}
});
}
И пробовал эту строку на этой странице:
deleteDomByHtml(`<span class="-img _glyph">Stack Overflow</span>`);