Could I create "Call" button in HTML 5 IPhone application using PhoneGap? Pushing this button should invoke call to certain number on IPh开发者_开发知识库one device.
If you can specify a URL for the button, use the URL format tel:phonenumber
.
Best format is no punctuation in the number, so:
<a href="tel:+18002752273"> Call Apple Customer Support at 1-800-275-2273 </a>
Use this "tel:phonenumber" it will NOT work on emulator, but it works on real device.
精彩评论