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 = $(\
use this
alert($("input[name=checkname]:checked").map(function () {return this.value;}).get().join(","));