I would like to know how to imitate the click of link in JSP or serlvet, in order to track clicks.
I have pages with links containing tel protocol URIs like this:
Click
here to listen!
I want to replace the above with something like this:
Click
here to listen!
And have call_tracking.jsp do its tracking stuff and then spawn a phone call, just like the first example does. I do not want to bother the user with another page, hence the need to accomplish the click action programmatically. I presume this feat is achievable via Response header magic, I just don't know the right incantation ;-)
Thanks