Código:
function Funcion2(COLOR) {
var aux ;
if (document.getElementById(COLOR).style.background == "#ffffff"){
document.getElementById(COLOR).style.background="#000000";
}
else {
document.getElementById(COLOR).style.background = "#ffffff";
}
}
Lo que quiero esque el boton si tiene el fondo blanco lo pase a negro y si esta en negro lo pase a blanco, pero siempre se desvia por el Else y lo pone de color blanco.
Saludos!