The tel tag has no wiki summary.
10
votes
4answers
544 views
Sending pause to dialer
In a similar vein to Sending Pause and DTMF input in android, I'm trying to send the pause character "," to the dialer. This works on HTC Sense phones and even on the Xoom, but not on "stock ...
6
votes
2answers
409 views
How do I detect availability of tel: uri scheme in a web app?
I'm looking to use the tel: uri scheme (rfc3966) to make phone numbers linkable on mobile devices in a web application, but I'd prefer to not link them on devices that can't handle the tel: scheme - ...
6
votes
3answers
2k views
Is it okay to use <input type=“tel”/> now?
I'm working on a mobile phone web app and I have several text fields that could benefit from iPhone's will adjust the keyboard for the user but I'm worried about breaking backwards compatability. ...
2
votes
1answer
270 views
Difference between tel and wtai url schemes
I am interested in making phone number links to begin phone calls for users browsing a mobile site.
What are the differences between the tel and wtai url schemes? Are there other schemes?
How should ...
2
votes
1answer
248 views
How can I make a call inside an iPhone application?
I want the user to make a call from my application
Something like this post, but instead of sending an email, make a call
...
2
votes
3answers
292 views
I need a regular expression to convert US tel number to link
Basically, the input field is just a string. People input their phone number in various formats. I need a regular expression to find and convert those numbers into links.
Input examples:
(201) ...
1
vote
1answer
74 views
JavaScript to convert telephone numbers to tel: links
I need some help me with a peice of JavaScript that will convert telephone numbers to tel: links?
Few things I need this code to do: 1) Only find numbers in text, do not find numbers that are located ...
1
vote
1answer
289 views
iOS 5 tel link not working
I built an app that has a simple tel link:
- (IBAction) makeCall:(id)sender
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8005555555"]];
}
It worked fine when I was ...
1
vote
1answer
116 views
HTML5 input type number vs tel
I'm working on updating some form inputs to HTML5. I'm not interested in validating the data so much as having the numeric key pad on mobile devices. Input type 'tel' seems to do what I want, I get ...
1
vote
1answer
292 views
Dealing with tel: anchor
I have an anchor to a telephone number. On phones is great. On desktops with Skype or Google Voice it's good. The problem is on desktops that just don't know how to deal with that.
What should I do? ...
1
vote
3answers
545 views
placing a call programmatically on iPhone and return to the same app after hangup
I would lie to place a call in my app (I can use the tel:) but I would like to return to my app where I left after the users hangs up.
Is that possible?
0
votes
0answers
16 views
IOS tel: and telpromt seems not to be working on iPhone 4S
Just testing the following
//NSURL *url = [NSURL URLWithString:@"telprompt://123-456-7890"];
NSURL *url = [NSURL URLWithString:@"tel://123-456-7890"];
[[UIApplication sharedApplication] ...
0
votes
1answer
133 views
tracking clicks on anchor tel links
I am embedding anchor links on mobile smart phone browsers using the tel anchor link.
<a href='tel:xxx-yyy-zzzz'>xxx-yyy-zzzz</a>
My understanding is that the smart phone intercepts ...
0
votes
0answers
47 views
# symbol in tel: links not working on nokia devices
I have a html page with links like < a href="tel:*123#">*123#< /a>.
when user clicks on the link from a nokia device (tested with N73, E72) it says 'invalid phone number'.
I have found that ...
0
votes
0answers
24 views
Detecting the user's choice when he sees the tel link popup
I wish to know when the users are actually placing a call from my application (UIWebView) and not just tapping on the phone number.
How can I get the result of what the user selected when he receives ...
0
votes
3answers
571 views
GridViewComboBoxColumn Telerik empty combobox until selected
I have a telerik GridView with a GridViewComboBoxColumn - this control is empty until i click on an item in that column. Once I click on that column these values appear.
...
0
votes
2answers
274 views
Android : Simple web application crashes on links other then the http scheme
I am a beginner in developing for the Android, so excuse me if this is obvious. I created a simple web application using the samples from android.com however, when a link like tel: or mailto: is ...
0
votes
2answers
689 views
Tel href link stops working on iPhone in Web App mode
I have a fairly simple HTML page with a link on it that calls a phone number.
<a href="tel:1234567890%2C%2C9#">Call Us<a/>
The idea is to call the number 1234567890, have two pauses, ...
0
votes
3answers
482 views
Open Mail.app on IPhone from webpage that's INSIDE an app
our app loads profile pages from our website INSIDE the app. They have been optimized for iPhone css, but they are still an html page. Our mailto link isnt working as expected.
When clicked, nothing ...
0
votes
4answers
517 views
using tel: url to initiate call - but need to insert SPECIAL CHARACTER #
I need to initiate a call which also enters an id separated by #
The problem is that as soon as I insert this special character the method does not fire (as explained in the doc, I know)
Also ...
0
votes
0answers
673 views
HTML/XHTML TEL: and USSD String
Hi All I'm trying to get the <a href='tel:*120*5xxxx#' /> to work but it does not like the USSD part. Is there a way to use tel: with a USSD string ?
PS. xxxx above represents numeric value's ...
0
votes
1answer
314 views
Why does tel:// behave differently in a webview? (iOS 3.1)
I'm currently developing an iPhone app for a mall.
One of the features is the ability to phone a mall tenant from within the app. I'm using
NSURL *url = [[NSURL alloc] ...
0
votes
1answer
344 views
Dialing a command prefix on the iPhone
Our application lets users call phone numbers. Users would like to be able to block their caller ID.
On other platforms, we let the user specify a custom dialing prefix. For instance, on my cell ...