 
Is it possible to get section IDs for multiple repeating sections in one call?  something like:  on(“change:repeating_sectiona change:repeating_sectionb”, funtion() {
    getSectionIDs([“sectiona”,”sectionb”], function(idarray) {
        //do stuff
    });
}); If it is possible to do something like this, how would I get the number of ids in each repeating section?  I tried idarray.sectiona.length, but that didn’t work, so I’m not sure if it’s not possible, or I’m just doing something wrong...  Thanks for your help.
 
				
			