I am embedding anchor links on mobile smart phone browsers using the tel anchor link.

<a href='tel:xxx-yyy-zzzz'>xxx-yyy-zzzz</a> 

My understanding is that the smart phone intercepts the link and allows the user to directly call.

How can i track the user click on this link?

use a 302 redirect?

link|improve this question
feedback

1 Answer

The only answer is to use a redirect, sorry.

<a href="redirect.php?number=123-456-798">Call Us</a>

Then, on redirect.php do a 302 redirect to the tel protocol for the number you have passed (or the default number).

Record the hits on redirect.php

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.