Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/07/2002, 17:22
jpalbox
 
Fecha de Ingreso: abril-2002
Mensajes: 432
Antigüedad: 22 años, 8 meses
Puntos: 0
Re: Valor del radio buton

por eje: he intentao añadir una condicion a la primera sentencia y me da error

<script language="JavaScript">
<!--


function validar(form)
{
if(form.tipo[0].checked) && (form.titulo.value="")
{
alert("Noticia Breve");
form.tipo[0].focus();
return false;
}
else if(form.tipo[1].checked)
{
alert("Noticia Kronos");
form.tipo[1].focus();
return false;
}
return true;
}
//-->
</script>