hola a todos tengo el siguiente formulario:
Código HTML:
<script language="javascript">
function validar_campos()
{
if (form2.nombre.value == "")
{
alert("**POR FAVOR INGRESE SU NOMBRE**"); form2.nombre.focus(); return;
}
if (form2.institucion.value == "")
{
alert("**POR FAVOR INGRESE EL NOMBRE DE LA INSTITUCION A LA QUE PERTENCE**"); form2.institucion.focus(); return;
}
if (form2.telefono.value == "")
{
alert("**POR FAVOR INGRESE SU NUMERO DE TELEFONO**"); form2.telefono.focus(); return;
}
if (form2.municipio.value == "")
{
alert("**POR FAVOR SELECCIONE EL MUNICIPIO AL QUE PERTENECE**"); form2.municipio.focus(); return;
}
if (form2.mail.value == "")
{
alert("**POR FAVOR INGRESE SU EMAIL**"); form2.mail.focus(); return;
}
else
{
document.form2.action='preguntas.php';
}
document.form2.submit();
}
</script>
<form name="form2" method='post'>
<input type="hidden" name="valida_preguntas" value="si" />
<input id="nombre" name='nombre' type='text' width='280' tabindex='1' value='' />
<input id="institucion" name='institucion' type='text' width='280' tabindex='2' value='' />
<input id="tel" name='telefono' type="text" width='280' tabindex='3' />
<input id="mail" name='mail' type="text" width='280' tabindex='5' />
<a href="#" onclick="validar_campos();"><img border="0" src="imagenes/validacion_r10_c4.jpg"></a>
con IE me funcion muy bien pero con mozilla no reconoce el javascritp, agradadeceria que me ayuden con este tema
Gracias