I want to implement a JavaScript API to initiate phone calls programmatically and without the need for a native Objective-C implementation.

What I tried so far was something like location.href='tel:12345';. The result was an error with the message "The URL can’t be shown".

My second attempt was to create a hidden link (like <a href="tel:12345">call</a>) and click it programmatically. This didn't work either, although the link worked when not hidden and clicked manually by the user.

Is it possible to achieve this with JavaScript only or do I need to delegate to the Objective-C part of the application to initiate the call from there?

link|improve this question
are you adding this to the homescreen? – Daniel A. White Aug 3 '11 at 12:20
It's a native app with a UIWebView in which the web app resides. So similar to phonegap, but too different, to just use phonegap. – alex3683 Aug 3 '11 at 12:49
the UIWebView is different from Safari, you will have to figure out how to handle the url differently. – Daniel A. White Aug 3 '11 at 12:52
feedback

5 Answers

Instead of tel:12345 have you tried tel://12345 ?

link|improve this answer
Yes, I tried both. Neither of them worked. – alex3683 Aug 3 '11 at 12:47
But in Mobile Safari this makes all the difference. :) – Mattias Kihlström Sep 23 '11 at 13:21
I'd love to know why I got 2 downvotes on this. – Valentin Jacquemin Feb 27 at 20:46
feedback
<a href="tel:1-800-xxx-xxxx">call</a>

Is your url is correct?

link|improve this answer
Do you mean the "-"? I don't believe that they are necessary. For example here in germany phone number fragments are separated just by whitespace or not separated at all. – alex3683 Aug 3 '11 at 12:48
I asked is your URL is correct? – Praveen-K Aug 3 '11 at 12:55
According to ietf.org/rfc/rfc2806.txt my url is correct. – alex3683 Aug 3 '11 at 13:11
feedback

Use window.open() for this:

window.open( 'tel:800-888-1234', '_top' );
link|improve this answer
feedback

You will probably have to write the code to do so natively and create a JavaScript function to be called from within the WebView.

link|improve this answer
feedback

Try This:

 NSString *phno = phone_no_label.text;
    if ([phno isEqualToString:@""]) {
        UIAlertView *phoalert = [[UIAlertView alloc]initWithTitle:@"Phone no missing!" message:@"Sorry Phone number is missing" delegate:nil cancelButtonTitle:@"ok" otherButtonTitles:nil, nil];
    }
    NSString *mobno = [self formatNumber:phno];
    NSString *phstr = [NSString stringWithFormat:@"tel:xxxxxxxxxxx"];
    NSURL  *url= [NSURL URLWithString:phstr];
    NSString *osVersion = [[UIDevice currentDevice] systemVersion];
    if ([osVersion floatValue] >= 3.1)
    {
        tranparent_webview = [[UIWebView alloc] initWithFrame:[UIScreen mainScreen].applicationFrame];
        [tranparent_webview loadRequest:[NSURLRequest requestWithURL:url]];
        tranparent_webview.opaque = NO;
        tranparent_webview.backgroundColor = [UIColor clearColor];
        tranparent_webview.delegate =self;
        // Assume we are in a view controller and have access to self.view
        [self.view addSubview:tranparent_webview];

} else {
// On 3.0 and below, dial as usual [[UIApplication sharedApplication] openURL: url];
}

link|improve this answer
i have updated my answer i was missing some brackets and some other stuff . so you can use , further for removing the web view from your view you can make use of Notification . if you confused ask me i will put the complete example here. – umer sufyan Apr 24 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.