I recently came across a StackOverflow answer that gave excellent instructions on how to get the value of a checked radio button using jQuery:
var radioVal = $(\
Try using the form of index that allows you to specify an element in a collection and returns it's relative position in the collection:
var radioIdx = $(":radio[name='radioFieldName']")
.index($(":radio[name='radioFieldName']:checked"));
or the version that finds the first item matching a selector that is in another collection and reports it's position in the second collection.
var radioIdx = $(":radio[name='radioFieldName']:checked")
.index(":radio[name='radioFieldName']");