On my form I havea set of radio buttons. Here\'s the mark up:
Format
You can use the length and equal attribute selector with :checked filter selector like this:
if ($("input[name='fileType']:checked").length > 0){ // one ore more checkboxes are checked } else{ // no checkboxes are checked }