Skip to content

Instantly share code, notes, and snippets.

@dangerouse
Last active January 23, 2024 21:22
Show Gist options
  • Save dangerouse/3015902 to your computer and use it in GitHub Desktop.
Save dangerouse/3015902 to your computer and use it in GitHub Desktop.
Cloudsponge Widget Reference - The beforeDisplayContacts callback
<!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="https://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({
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>
@Michael0365
Copy link

I need this

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment