Cita:
Quiero decir: seleccionar inputs del tipo radio, del grupo 1, y ver si están chequeados.$( "input:radio[name=grupo1]:checked" )
Código HTML:
... name = $(this).attr('name'); type = $(this).attr('type'); $("input:"+ $(this).attr('type')) group = "input:"+ type +"[name="+ name +"]"; if($(group+":checked").length==0) { // validación: return true o false. }