How do you track href titles? <a href="http://www.widget*com" title="widget, linkdev#1"">red widget</a> <a href="http://www.widget*com" title="widget, linkdev#2"">red widget</a> I was thinking of giving keywords for different dev groups, and would like to track it through href title to see which one does the best work.
I'm not sure if I understand your question correctly but if you add a query string to the link with the title information then you can pass the title information along when someone clicks on the link. e.g. <a href="http://www.widget*.com?title=linkdev1" title="widget, linkdev#1">red widget</a> <a href="http://www.widget*.com?title=linkdev2" title="widget, linkdev#2">red widget</a> and then on http://www.widget*.com you can retrieve linkdev* with $_GET['title'] with PHP or in ASP Request.Query("title"). Hope that addresses your question.