Need a bit more information!
If you don't show us some HTML it's a bit difficult to second guess
the relationship between checkbox and radio.

On Oct 25, 8:34 pm, "Alessandro Feijó" <[EMAIL PROTECTED]> wrote:
> I'm trying to control N checkboxes, when one is selected or unselected, I
> need to enable/disable a radio next to the checkbox
>
> something like this:
>
> ( ) [ ]
> (o) [x]
>
> the marked one, turn the radio clickable
>
> I start this code
>
>   $('.form-checkbox').each( function() {
>     $('.form-checkbox:radio').attr('disabled', $(this).attr('checked'));
>   });
>
> It returns every checkbox, but I cant figure out how to find the radio
> object from each one
>
> Thanks in advance for any tip :)
>
> huge hug
> Feijó

Reply via email to