Radio or Checkbox Form Validation. Add this JavaScript to the form validation our form creator spits out.
var fields = $("input[name='e_checkbox_name']").serializeArray();
if (fields.length === 0)
{
alert('Please Check A Check Box');errors++;
}