Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/08/2008, 15:04
Avatar de ferbux
ferbux
 
Fecha de Ingreso: mayo-2007
Ubicación: por ahí intentado ayudar
Mensajes: 823
Antigüedad: 17 años
Puntos: 6
Respuesta: input type radio

Hola,

Algo como esto te puede funcionar:

Código:
<html>
<head>

<script>
function oculta(){ 
	document.formulario.ped.style.display='none';
   } 

function muestra(){
	document.formulario.ped.style.display='';
    document.formulario.ped.focus();
}

</script>
</head>
<body onload="oculta(this);">
<form name=formulario method="POST">

<INPUT type=radio value="1" name="con" onclick="muestra(this);"/>Muestra campo de texto<br /> 
	
<center><input type="text" name="ped"/ ></center>
            			

</form>
</body>
</html>
Saludos!!!
__________________
"Eres grande por que caminas entre gigantes"