Questions tagged [tel]

'tel' is a URI scheme specification for telephone numbers, which describes resources for telephone numbers linked to within documents.

The tel URI scheme can be used to create a link to a telephone number on the web, which can be implemented by prepending the value tel: to a telephone number, and then placing the whole value into an a element's href attribute, like so:

<a href="tel:867-5309">Call Me</a>

Do not use this tag if your question refers to telephone numbers in general, such as using regular expressions to match a telephone number's format, or if you are referring to the tel attribute of an input element (use instead).

References/Resources

254 questions
0
votes
1 answer

WebView tel: link not working

I have searched on google but all i have tryed is not working , here is my code can you help me to put this only on tab6 ? So i have 4 links tel:number on tab5.html and i want to call when click them not to show 404 . @Override public View…
Alex Bonta
  • 45
  • 8
0
votes
1 answer

Why Android restarts the app when returning from Dialer ? (or any other service)

We have a page that has a links to a tel number (a href="tel:5551234567"), when the user touches the link, it opens up the dialer. After the user end the call, and hit back, instead of just returning the browser, you can see that the browser is…
GDM
  • 110
  • 6
0
votes
2 answers

Telephone link in webview is opening in browser

I have a telephone link on my webview app: tel:062123658 but when I click on it I get webpage not found. This is my code: public class FullscreenActivity extends Activity { private WebView webView; public void onCreate(Bundle…
Marv
  • 33
  • 11
0
votes
2 answers

Make a phone call from a worklight application

We create a html code to make a phone call from inside a WL App using this document.location.href = 'tel:'+ phoneNumber; It seems to be working at first, that is, it launches the dialer, make the call, and when the phone call ends, it meant to come…
GDM
  • 110
  • 6
0
votes
1 answer

Disable auto-linking phone on specific div ios

I have a phonegap app which displays some information (uses AngularJs and JQM, don't think it's relevant). I have a div that contains a certain number:
1234567
ios automatically detects it as a valid phone number…
Niv
  • 2,294
  • 5
  • 29
  • 41
0
votes
2 answers

Have a firefox extension recognise a tel: tag and hangle it?

I'm developing a click-to-dial tool, and would like to pass all tel: links in firefox to my extension, which will then run click to dial so Call this customer should silently be passed to my extension to deal with…
0
votes
1 answer

adding prefix tel: to phone number variable from array

How I can add prefix tel:65 to my phone number, that I fetched from address book in array. If I do this in viewdidload it's getting null NSURL *phoneUrl = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", phoneNumbers]]; NSLog(@"Some…
Anton
  • 3,102
  • 2
  • 28
  • 47
0
votes
1 answer

Using tel: Hyperlinks on Android < 4 alternative?

I have an app which gives normal landline numbers for UK 08 numbers. Currently this is a web page shown in the app, when the user finds the number they want and click on the green phone icon. I'm using the following JavaScript to force then force a…
jampez77
  • 5,012
  • 7
  • 32
  • 52
0
votes
4 answers

HTML/Java - How to restrict first 3 number of tel input field to specific number?

I try to make registration site on wordpress that also required SMS phone verification. The problem is that my website is related to Pakistan. I also want to register users that are from Pakistan. But SMS gateway can send sms to world wide, so every…
John Doe
  • 15
  • 2
  • 7
0
votes
1 answer

Using telephone links on mobile devices

Ok, I know its possible to get a number to be callable with Skype using callto:, and I know its possible to get a number clickable on iOS and droids by using tel: in an a tag. However, what about tablets/iPads? Does this work for them? What if they…
Oberst
  • 477
  • 11
  • 19
0
votes
1 answer

Android textview with clickable phone number

I have a textview showing Phone: 0900-1111, Fax: 0900-2222 Is there a way to make the phone clickable but not the fax. Using Phone: 0900-1111, Fax: 0900-2222 With autolink set to phone, both are clickable !
user2052680
  • 131
  • 1
  • 6
0
votes
2 answers

Has anyone used the tel: protocol in the Yii Framework?

The following code gets stripped down at runtime: $PhoneHomeLink=CHtml::link($this->phone_home,'tel:'.$this->phone_home); Assuming the home phone number is 999-555-1212 the output is displaying: 999-555-1212 What happened to the:
mdietz
  • 33
  • 1
  • 1
  • 6
0
votes
2 answers

Using telprompt

I need to make a calling functionality from my app. I used tel:// the control doesnt go back to app automatically. If telpromp is used an alert is shown before the call. My first question is will telprompt be rejected in app store? If no then i dont…
DilipKumar
  • 11
  • 5
0
votes
2 answers

Wordpress change url from http:// to tel:

I've been stuck on this all day! I'm using a custom wp_nav in Wordpress and I need to change one custom menu item from href="http://555.555.5555" to href="tel:555.555.5555". I've added a class="phone" to the menu-item and I'd like to change it using…
1 2 3
16
17