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 in tag attributes. 2) Once the number is found wrap it in a tel: anchor. 3) Clean up the number for the href attribute (remove anything that is not a number). 4) Hopefully work pretty fast :)

Using jQuery is fine, but I'm not sure if that is the best way.

So the JavaScript will change all instances on the page of something like this:

<div data-something-that-looks-like-phone-number="(111) 222-3333"></div> 
(000) 000-0000

To this:

<div data-something-that-looks-like-phone-number="(111) 222-3333"></div>
<a href="tel:0000000000"> (000) 000-0000</a>

You will notice the data-something-that-looks-like-phone-number attribute did not change.

I have a regex that seems to work well for searching for phone numbers

[01]?[- .]?[\(\. ]?[2-9]\d{2}[\)\. ]?[- .]?\d{3}[- .]\d{4}

Any code to get me started would be very much appreciated. Thanks!

Also, there was a similar question earlier and the solution was "do not worry about it because phones do that automatically." That solution does not work for us, we need the tel links even on devices that do not do it automatically. Thanks again...

link|improve this question
feedback

1 Answer

I don't see why you need a regex if you have the data attribute:

$("div[data-number]").each(function() {
    var $a = $("<a />").attr("href", "tel:" + $(this).data("number"));
    $a.html($(this).html());
    $(this).html($a);
});

Demo.

link|improve this answer
thanks for the code, however I just made up the data attribute to show an example of what I do not want to change (a poor example in hindsight). If you run the regex on the whole page source you will find the number in the data attribute, but that should not be changed... The data attribute will not be present in real use, but a similar number might be in a tag somewhere and should be left alone... – user1160128 Jan 26 at 16:51
I edited the question to make my use of the data attribute clearer. – user1160128 Jan 26 at 17:00
feedback

Your Answer

 
or
required, but never shown

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