Quizá esto te sirva:
http://jsfiddle.net/kvhqnfre/
Código HTML:
Ver original<input type="radio" value="AAA" id="1"> AAA
<br> <input type="radio" value="BBB" id="2"> BBB
<br> <input type="radio" value="CCC" id="3"> CCC
Código Javascript
:
Ver original$('input').click(function() {
if($('input').is(':checked')) {
$('input').attr('disabled', true);
$(this).attr('disabled', false);
}
$( "#log" ).html( $( "input:checked" ).val() + " está seleccionado, los otros 2 botones están deshabilitados");
});
Saludos.