I have an array of check boxes, and for all checkboxes listed (must check at least 3), i would like it to then display the 3 in 3 drop downs (so each of the 3 drop downs has each of the 3 or more answers).
Here is the array of checkboxes:
for(var i = 0; i < q12InfoArray.length; i++) { if(q12Radio[i].getBackgroundColor() == '#000000') { qValue12 += q12InfoArray[i] + ','; } }And Drop downs:
qValue13 = q13UseButton1.getTitle() + ',' + q13UseButton2.getTitle() + ',' + q13UseButton3.getTitle();
Your Answer
Think you can help? Login to answer this question!