Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/11/2014, 12:24
dglypho
 
Fecha de Ingreso: noviembre-2014
Mensajes: 27
Antigüedad: 10 años, 1 mes
Puntos: 0
Respuesta: Cambiar el color de un td con DOM

Vale muchas gracias por tu ayuda, ya me funciona. Y ahora una pregunta por curiosidad. ¿Si quisiese que al pulsar una celda me apareciese un div oculto lo debería meter hay o en otro sitio:

Código Javascript:
Ver original
  1. celda.onclick=function(){
  2.         div.style.display='block';
  3.     if(this.style.background=='green'){
  4.         this.style.background='orange';
  5.     }
  6.     else{
  7.         this.style.background='green';
  8.     }
  9. }