View
 

iPhone: Get number of contacts

Page history last edited by Becky 1 year ago
FYI - these Contact examples are for 0.9.3 and before.   
 Please see http://docs.phonegap.com/phonegap_contacts_contacts.md.html for 0.9.4 and beyond.


   function contactsCount(){
   debug.log("contactCount");
   navigator.contacts.contactsCount(onGotContactCount,onGotContactCountError);    
}
     
function onGotContactCount(num){
   document.getElementById("contactCountDiv").innerHTML = "Contact Count : " + num;
}
	
function onGotContactCountError(err){
   alert("error getting contacts :: " + err);
}