<!DOCTYPE html>                                                                                                                                                                                                    
<html>                                                                                                                                                                                                             
<head>                                                                                                                                                                                                             
<!--ยท                                                                                                                                                                                                              
  Include the script anywhere on your page, usually in the head                                                                                                                                                    
   (don't forget to replace `localhost-only` with your own CloudSponge Widget Key)                                                                                                                                 
  -->                                                                                                                                                                                                              
<script src="//api.cloudsponge.com/widget/localhost-only.js"></script>                                                                                                                                             
<script>                                                                                                                                                                                                           
// variable to hold the complete address book returned from api.cloudsponge.com                                                                                                                                    
var complete_address_book;                                                                                                                                                                                         
                                                                                                                                                                                                                   
// extra widget options go here:                                                                                                                                                                                   
cloudsponge.init({                                                                                                                                                                                                 
  skipContactsDisplay: true,                                                                                                                                                                                       
                                                                                                                                                                                                                   
  beforeDisplayContacts:function(contacts, source, owner) {                                                                                                                                                        
    // do something with the contacts array                                                                                                                                                                        
    complete_address_book = contacts;                                                                                                                                                                              
  }                                                                                                                                                                                                                
});                                                                                                                                                                                                                
</script>                                                                                                                                                                                                          
</head>                                                                                                                                                                                                            
<body>                                                                                                                                                                                                             
  <a class="cloudsponge-launch">Add from Address Book</a>                                                                                                                                                          
</body>                                                                                                                                                                                                            
</html>