In my upload form I have a few select boxes. These are arranged in divs called #age-groups, #subjects and #topics.
I want to be able to use jquery to make sure the user clicks at least one checkbox from each of the 3 individual divs.
Please could someone help me figure out how to do this.
For when at least one checkbox in each div is clicked I want the function to output:
   if (at least 1 checkbox is ticked in each of the 3 divs)
   {
     $('#two')
         .append('<div class="done rotatetwo wiggler"></div>')
         .addClass('grey')
   }
If possible can this function output the above code as soon as the final required select box is selected.
 
     
     
     
     
    