Though this is old, but try this (assuming you're within the click function of the radio buttons)
$('#myFormID input:radio[name=radioFieldName]').click(function(){
var index = $('#myFormID input:radio[name=radioFieldName]').index(this);
alert(index);
});