Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/11/2010, 05:22
JordiGrau
 
Fecha de Ingreso: noviembre-2010
Mensajes: 1
Antigüedad: 14 años, 1 mes
Puntos: 0
Error en internet explorer pero no en firefox!!!

Buenas!
soy nuevo en esto y estoy haciendo un pequeño formulario, que da como resultado un e-mail con el resultado de los campos requeridos.

El hecho es que el formulario me funciona a la perfección com firefox, pero ni siquiera se visualiza en internet explorer. Me da un error en la parte del <script>

Pego el codigo por si alguien me pude ayudar ...

Thanks!

<body>
<style type="text/css">
form#formulariDades input{ border:1px solid #cccccc; background:#EDF4ED; } form#formulariDades textarea{ border:1px solid #cccccc; background:#EDF4ED; cols:80; } form#formulariDades select{ border:1px solid #cccccc; background:#EDF4ED; }</style>

<script language="JavaScript" type="text/javascript"><!--
function checkform()
{
var form=document.getElementById("formulariDades");
if (form.formvar01_Nom.value == "") {
alert( "Introdueix el teu nom" );
form.formvar01_Nom.focus();
return false ;
}
if (form.formvar02_PrimerCognom.value == "") {
alert( "Introdueix el teu primer cognom" );
form.formvar02_PrimerCognom.focus();
return false ;
}
if (form.formvar03_SegonCognom.value == "") {
alert( "Introdueix el teu segon cognom" );
form.formvar03_SegonCognom.focus();
return false ;
}
if (form.formvar04_Email.value == "") {
alert( "Introdueix una adreça de correu" );
form.formvar04_Email.focus();
return false ;
}
if (form.formvar05_DNI.value == "") {
alert( "Introdueix el teu número de DNI" );
form.formvar05_Comentari.focus();
return false ;
}
if (form.formvar07_Departament.value == "") {
alert( "Introdueix el teu departament" );
form.formvar07_Departament.focus();
return false ;
}
if (form.formvar08_Facultat.value == "") {
alert( "Introdueix el la teva facultat" );
form.formvar08_Fscultat.focus();
return false ;
}
if (form.formvar09_Relacio.value == "") {
alert( "Introdueix la teva relació contractual" );
form.formvar09_Relacio.focus();
return false ;
}
if ((form.formvar10_activitat1.checked==false)&&(form .formvar11_activitat2.checked==false)&&(form.formv ar12_activitat3.checked==false)&&(form.formvar13_a ctivitat5.checked==false))
{
alert( "No has escollit cap activitat" );
form.activitat1.focus();
form.activitat2.focus();
form.activitat3.focus();
form.activitat5.focus();
return false ;
}


return form.submit() ;
}

</script>
<b>Inscripción</b>

<form action="/servlet/Satellite?c=Page&amp;cid=1126248553427&amp;languag e=ca&amp;pagename=i-UAB%2FPage%2FTemplatePageiPopUpWindowNoLogin" id="formulariDades" method="post" name="formulariDades">
<input name="formmail_mailto" type="hidden" value="[email protected]" /> <input name="formmail_subject" type="hidden" value="suggeriments" /> <input name="formredirect_gotopage" type="hidden" value="ResultatFormulariIDES_ca" /> <input name="formprop_contenttype" type="hidden" value="text/plain; charset=UTF-8" /> <input name="formprop_xsltappling" type="hidden" value="XSLT_PATH_FORM_plain" /><br />

y bla bla bla ...