I would like to remove a link from a page when it was visited. But...how, if the pseudo-class :visited have privacy restrictions? (i can not use display: none, for example)
(How i would like to do) Example:
.someclass a:link {display:block;}
.someclass a:visited {display:none;}
Thanks guys.
Detail: i'll use a external link too, so i can not use jquery cookies or localstore, and the links will be delivered by email, therefore i can not use jquery on click in the class "X".