user123701
user123701

Reputation:

How can I access to the iPhone address book in a web app?

I'm currently developing a web app for my company. In this application, there's a form with input fields containing informations about contacts. I would like to create a button which allows to create a contact in the address book on a click.

Is there anyway to access the address book with JavaScript or other web language ?

For example, on windows and IE we can create an ActiveX object in JavaScript to create contacts in Outlook...

Thanks.

Upvotes: 6

Views: 5858

Answers (2)

Eric Petroelje
Eric Petroelje

Reputation: 60569

If you create a link that generates a file in the vCard format, the iPhone version of Safari might recognize it as a contact and automatically launch the address book app when they click on the link.

It appears that this would NOT work as of iPhone 2.1 (no vCard support in safari), but it might work in 3.0 - I have seen that people will be able to send vCards via MMS on the iPhone, so maybe they'll work in safari too? I guess you'd just have to try it to find out.

Upvotes: 0

Jake
Jake

Reputation: 3973

If this turns out to be possible, I'm eating my Mighty Mouse ..

I apologize for the slightly unrelated answer

P.S: to make this answer slightly more related; you could accomplish this by creating a hybrid between a native application and a web app, where the native app will pop-up the address book and then return its data to the web app.

Upvotes: 2

Related Questions