var lista = document.querySelector("#lista1").children; for (var i = 0; i < lista.length; i++) { lista[i].style.color = i ^ 1 ? 'red' : 'black'; }