I'm using phonegap with jqtouch and am trying to very simply open the phone's native phone app and prompt a call. I've tried all sorts of variations on the following:

<a href="tel:[NUMBER]" class="greenButton>Call number</a>

I've tried rel="external"

I've tried using href="tel://"

I've tried target="_blank"

I've tried target="_webapp"

I've even tried adding class="tel" and using jQuery to call $(location).attr('href',this.href);

Basically, jqtouch must be intercepting links to do it's thing and I can't figure out how to make it do things normally!

I've found something odd however...
If I wrap the link in an iscroll wrapper it works.

<div class="s-scrollwrapper">
<a href="tel:[NUMBER]" class="greenButton">Call number</a>
</div>

I obviously don't want to settle for this because it screws up formatting and makes the button scrollable and is pointless. Can anyone help me please?

link|improve this question

feedback

3 Answers

I tried:

<a href="tel:[NUMBER]" rel="external" target="_webapp">Call number</a>

...and it worked fine.

Could be that it needs both the rel="external" (to stop it from trying to AJAX the link) AND target="_webapp" so that it doesn't try to open Safari to handle the link.

link|improve this answer
I have been trying some stuff out and have found that I can easily use mailto and sms links and they work fine when testing on an iphone. But I still can't seem to get tel: to work. Is this a setting in phonegap perhaps? it doesn't seem to make sense! – juliusbangert Nov 17 '11 at 14:14
Not sure... it could be a bug in jQTouch. I am using DataZombies fork: github.com/DataZombies/jQTouch – Devgeeks Nov 20 '11 at 6:56
This is what I am using as well and it still doesn't do anything! Are you also using the initListIndices() call. This is linked to the s-scrollwrapper so be good to know if you are using this extension of the datazombies fork as well. I recently had trouble displaying images from a remote source and had to edit the phonegap.plist file to add an external host. Do you think it might be something like this that needs changing to get the tel link working? – juliusbangert Nov 22 '11 at 9:50
feedback
up vote 0 down vote accepted

This did turn out to be the way jqtouch intercepts click events and prevents default behaviour. The way I ended up "fixing" it was to put an 's-scrollwrapper' div around the content on the page with the call button. I needed to do this anyway for all screens of the app but as for this datazombies fork, it probably needs a better way to implement tel links.

link|improve this answer
feedback

In my case it was a problem with iScroll that I have managed to solve by adding the following option:

  var options = {
    //other options
    onBeforeScrollStart: function (e) {
      var target = e.target;
      while (target.nodeType != 1) target = target.parentNode;
      if (target.tagName != 'SELECT' && target.tagName != 'INPUT' && target.tagName != 'TEXTAREA' && target.tagName != 'A') e.preventDefault();
    }
  };
  var myScroll = new iScroll(wrap, options);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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