Get All the Checked Radio Buttons


$('#container input:radio[name="someName"]:checked').each(function () {
      console.log(this.value);
});


Back to Notes