22/08/2004, 10:50
|
| | | Fecha de Ingreso: agosto-2004 Ubicación: Calella City (BCN)
Mensajes: 3
Antigüedad: 20 años, 3 meses Puntos: 0 | |
jellows alex esto es lo maximo que te puedo pasar, valida en la instancia del input text mail la existencia de la "@" i del "."; Esta en AS 1.0.
String.prototype.isMail = function() {
if (this.indexOf("@")>0 && this.indexOf("@") == this.lastIndexOf("@")) {
if (this.lastIndexOf(".")>this.indexOf("@")+1 && this.lastIndexOf(".")<this.length-2) {
return true;
}
}
};
[TO BE A ROCK AND NOT TO ROLL] |