Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/08/2010, 07:57
shaggyrd
 
Fecha de Ingreso: julio-2009
Mensajes: 8
Antigüedad: 15 años, 4 meses
Puntos: 0
Exclamación cambiar value de un input

buenas necesito cambiar el value de un input tipo hidden con un valor que agarro de los radio bottom este es el codigo que tengo.

Código HTML:
function seleccion(){
        $(document).ready(function(){
            $('input:radio[name=radio]').change(function(){
                var ver =$(this).val();
                 $('#ceddep').attr('value', ver);<!-- no se si esto esta bien?-->
                
            }); 
        });
    }
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='05623484' onclick='seleccion()' /></td>
<td i>05623484</td>
<td>Flores Carmen</td>
<td>Conyuge</td>
<td width='20%'>R</td>
<td width='5%'><img src='img/no_picture.jpg' width='40' height='48'/></td>
</tr>
<tr>
<td align='center'><input type='radio' name='radio' id='radio' value='05717441' onclick='seleccion()' /></td>
<td id='obtener'>05717441</td>

<td>Bonias Antonio</td>
<td>Titular</td>
<td width='20%'>R</td>
<td width='5%'><img src='img/no_picture.jpg' width='40' height='48'/></td>
</tr>
<tr>

<input type="hidden" name="ceddep" id="ceddep" value="x"> 
muchas gracias por sus respuestas.