18 March 2020

How to get full detail of any mobile number in cordova?

Get full detail of any mobile number in cordova.


document.addEventListener("deviceready", hello, false);
function hello(){
navigator.contacts.pickContact(function(contact){
 console.log('The following contact has been selected:' + JSON.stringify(contact));
 
document.getElementById("number").innerHTML = 'The following contact has been selected:' + JSON.stringify(contact);
    },function(err){
        console.log('Error: ' + err);
    });
}

No comments:

Post a Comment

How to create video slider with cuncks of videos without download all videos?

 Create video slider with cuncks of videos without download all videos function custom_video_slider_shortcode() { $slider_id = 'vide...