Hi all
I have check boxes created by a DB Service. 
 The DB has a table with one column, from where I get the text that will be displayed for the check box. 
 This works fine.
Now, I have a button. 
 When I click on the button, I want a javascript to iterate through the checked check boxes and get its text and store it in a local store.
I use various version of the below but I can not get the text
var mobilecheckboxgroup = Apperyio("chkBox_Interests").find(":checked"); 
 var arr = []; 
 mobilecheckboxgroup.each(function(){ 
 arr.push($(arr).text()); 
 }); 
 localStorage.setItem("lclStg_par1", arr);