Skip to content

Instantly share code, notes, and snippets.

@feedhenry-gists
Created June 8, 2011 19:14
Show Gist options
  • Select an option

  • Save feedhenry-gists/1015134 to your computer and use it in GitHub Desktop.

Select an option

Save feedhenry-gists/1015134 to your computer and use it in GitHub Desktop.
Contacts Call
$fh.contacts( function(res) {
var ul = document.createElement('ul');
for( var i in res.list ) {
var li = document.createElement('li');
li.innerHTML = '<i>'+res.list[i].name+'</i>';
ul.appendChild(li);
}
document.getElementById('contacts').appendChild(ul);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment