Ver Mensaje Individual
  #3 (permalink)  
Antiguo 22/05/2011, 15:25
Tinchosan
 
Fecha de Ingreso: mayo-2011
Mensajes: 3
Antigüedad: 13 años
Puntos: 0
Respuesta: Script de Javascript no funciona en IE

Pido disculpa por hacer algo "insulso" el post, aclaro que:

No acusa error, simplente, no ejecuta las funciones del javascript. Aqui dejo el codigo del form:

Código HTML:
<form action="guardar_usuario.php" method="post" name="form_usuario">
						<table align="center" width="570px">
							<tr>
								<td width="120">
									Nickname: <span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="text" name="nick" class="input200" onchange="validar_nick()" onblur="validar_nick()"/>
								</td>
								<td width="180">
									<div id="msj_nick"></div>
								</td>
							</tr>
							<tr>
								<td width="120">
									Email: <span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="text" name="email" class="input200" onchange="validar_mail()" onblur="validar_mail()"/>
								</td>
								<td width="180">
									<div id="msj_mail"></div>
								</td>
							</tr>
							<tr>
								<td width="120">
									Contraseña: <span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="password" name="pass" class="input200" />
								</td>
								<td width="180">
								</td>
							</tr>
							<tr>
								<td width="120">
									Repita contraseña: <span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="password" name="repass" class="input200" onchange="validar_pass()" onblur="validar_pass()"/>
								</td>
								<td width="180">
									<div id="msj_pass"></div>
								</td>
							</tr>
							<tr>
								<td width="120">
									Fecha de nacimiento: <span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="text" name="fecha" class="input100" value="dd-mm-aaaa" onchange="validar_fecha()" onblur="validar_fecha()"/>
								</td>
								<td width="180">
									<div id="msj_fecha"></div>
								</td>
							</tr>
							<tr>
								<td width="120">
									imagen de perfil:
								</td>
								<td width="215">
									<input type="text" name="img_perfil" class="input200" value="http://"/>
								</td>
								<td width="180">
								</td>
							</tr>
							<tr>
								<td width="120">
									¿Cuanto es? <?php echo $capt ?>&nbsp;<span class="txt_red">*</span>
								</td>
								<td width="215">
									<input type="text" name="user_capt" class="input100"/>
								</td>
								<td width="180">
								</td>
							</tr>
							<tr>
								<td colspan="2" align="center">
									<input type="button" class="boton_blue_100" value="Enviar" onclick="enviar_form()" />
								</td>				
								<td width="180">
								</td>
							</tr>
						</table>
					</form>