Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is a mailto href ever considered visited?

Tags:

html

I styled the <a> element as follows

a:link {color:#FF0000;}    /* unvisited link */
a:visited {color:#00FF00;} /* visited link */
a:hover {color:#FF00FF;}   /* mouse over link */
a:active {color:#0000FF;}  /* selected link */

In the following using Firefox, Opera, and Chrome

<a href="mailto:[email protected]" >send email</a>

All the colors act as expected except that it is never marked as visited. Is there someway to make it visited?

This is one place IE seems to excel as it does get marked as visited!

like image 904
Mike D Avatar asked Sep 17 '10 18:09

Mike D


1 Answers

mailto is not displayed as visited. I would try jquery to change the color.

like image 192
nubm Avatar answered Oct 14 '22 06:10

nubm