I am trying to figure out how to remove a link from a page once it has been visited. However, I am facing privacy restrictions with the :visited pseudo-class. Is there a way to achieve this without using display: none?
For example:
.someclass a:link {display:block;}
.someclass a:visited {display:none;}
Thank you for your help.
Additional detail: I will also be including external links, so I cannot use jquery cookies or local storage. The links will be sent via email, so using jquery onclick in the "X" class is not an option.