Solucionado!
Hola a tod@s!
El código que funciona:
Código PHP:
if (valid1.test(email) | !valid2.test(email)) {
reafirma();
return false;
}
Código PHP:
function reafirma(){
var hay = document.getElementById('error1');
if(hay == null){
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);
}}
Gracias a Venkman y Caricatos por su ayuda!
Saludos!