Aspiring Developer
Aspiring Developer

Reputation: 313

Dial a number using Phonegap in IPhone

I need to Make a call to a phonenumber using a PhoneGap Application in IPhone. Here is the code that I am using which is not working <a href="tel:+1-800-275-2273" style="width:300px;height:67px;margin-bottom:20px;"><img src="image.png" alt="" /></a>

Also I am using childbrowser and mapkit plugin in the app. Can anyone tell me how should I make a call using Phonegap in Iphone app ?

Thanks in advance.

Upvotes: 5

Views: 13233

Answers (4)

fusion27
fusion27

Reputation: 2646

This just worked for me:

window.location.href='tel:800-123-4567';

Upvotes: 4

Sonfisher
Sonfisher

Reputation: 21

After the tel:, try using numerals only, i.e.

<a href="tel:18002752273"><img src="image.png" alt="" /></a>

Upvotes: 2

j_mcnally
j_mcnally

Reputation: 6968

Try this out to if you are having problems in iOS 5. This allows you to call a phone via javascript. https://github.com/j-mcnally/PhoneGap-ios-PhoneDialer

Upvotes: 2

Shazron
Shazron

Reputation: 2488

I just tried it (copy and paste) without an image but with just text, it tried to dial the number, so it works. Something else must be wrong.

Upvotes: 4

Related Questions