![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
13/02/2008, 09:13
|
| | Fecha de Ingreso: noviembre-2007
Mensajes: 194
Antigüedad: 17 años, 3 meses Puntos: 2 | |
Re: Una y no más SantoDOM Perdón,
no mostré este código, si que le estoy poniendo id.
Código:
function reafirma(){
var p = document.createElement("p");
var texto = document.createTextNode("Please, type a valid e-mail");
p.appendChild(texto);
p.id = 'error1';
p.style.color = 'red';
p.style.fontWeight = 'bold';
var ant = document.getElementById('a');
ant.appendChild(p);
} |