Si. En verdad el selector funcionaba. La cuestión estaba en que eran dos grupod de radio buttons y me estaba evaluando solo uno. Tendré que hacer dos llamadas o un each.
Gracias!
Era esto:
Cita: jQuery.fn.verificaCheck=function()
{
name = $(this).attr('name');
type = $(this).attr('type');
$("input:"+ $(this).attr('type'))
group = "input:"+ type +"[name="+ name +"]";
if($(group+":checked").length==0)
{
alert('hay secciones sin rellenar!');
$(this).focus();
return false;
}
else return true;
}
Cita: $("input:radio").verificaCheck();
$("input:checkbox").verificaCheck();