Buenas tardes no soy muy experta en javascript y tengo la siguiente consulta:
Tengo un arreglo de radio buttons:
Red IFX <input name="data[tipo_red]" type="radio" value="1" checked <? if($checked=="1")print "checked";?>/>
Red ETB <input name="data[tipo_red]" type="radio" value="2" <? if($checked=="2")print "checked";?>/>
Ademas tengo un campo tipo texto :
Teléfono de Enlace:
<td class="right"><input type="text" name="data[tel_enlace]" value="<?=$data[tel_enlace]?>" id="tel_enlace" size="50">
Como hago para que cuando el boton de value = 2 este checked el campo texto (tel_enlace) sea requerido???
Tengo este codigo pero no me funciona:
if(form.tipo_red[1].checked && form.tipo_red[1].value==2)
{
if (form.tel_enlace.value == "")
{
alert("Debe digitar el número de Teléfono de enlace ");
return false;
}
}
Gracias por la ayuda....