Buongiorno,
Come faccio ad assegnare un classe/id all'immagine creata?

Codice:
codice:
var p = $(".column_8").find("span");
	p.each(function() {
		if($(this).text() == "Azienda") {
			img = document.createElement("img");
			img.src = "azienda.png";
			$(this).append(img);
		}
	});
Grazie