Hola a todos
Alguien puede decirme porque este boton envia el form, inclusive
cuando no deberia
function validarEmail()
{
if(document.formEnvio.EMAIL.value.indexOf('@')==-1)
{
alert("Debes*colocar*una*válida");
document.formEnvio.EMAIL.focus()
}
else{
alert("llega")
document.formEnvio.submit();
}
}
El boton dentro del form es :
<form id="formEnvio" method="post" action="http://forms.melodysoft.com">
<input type="text" name="EMAIL" size="40">
<input type="image" src="Images/BotonFinish.gif" onclick = "validarEmail()">
form>
.