Capítulo 14

DOM Core setAttribute

JavaScript

<script type="text/javascript">
window.onload = function () {
var elBotao, container, texto, para, resultado;	
	elBotao = document.getElementById("btn");	
	container = document.getElementById("container");
	
	alert(container.tagName)
	
	elBotao.onclick = function() {
	container.setAttribute("class", "um"); // navegador padrão
	container.setAttribute("className", "um"); // Internet Explorer
	//container.className = "um" - alternativa para todos navegadores
	}
}
<script>

HTML

...
<div id="container">Container</div>
<button type="button" id="btn">Rodar Script</button>
...

Container