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? Detect if it's not mobile and change the link? I still want the link to show, just the URL to be different.

Is there a better way? If not, how do I detect mobile in JavaScript in order to change the href attribute?

Thank you.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

To detect if the browser is launching from a mobile in JavaScript: http://detectmobilebrowser.com/

Then you can detect a phone number in JavaScript using a regular expression, such as one of those: http://www.regxlib.com/DisplayPatterns.aspx?cattabindex=6&categoryId=7

And finally rewrite the link: aLink.href="..."

The web-browser is responsible for launching the associated application for a certain link and I guess skype is registering for the phone numbers in the desktop. You can't do anything from the web-page I'm afraid.

link|improve this answer
Hi, that's not what I was asking. I want to add href="somepage.html" if the browser is not mobile. Or the other way around, add href="tel:00000" if the browser is mobile. – Francisc Jun 7 '11 at 10:36
Updated the answer based on clarification from your comment – John Riche Jun 7 '11 at 10:45
Thank you, John. – Francisc Jun 7 '11 at 11:35
feedback

Your Answer

 
or
required, but never shown

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