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...