Showing visited links?

Hello

Is there any way to show if a user already clicked a link?
I tried

a:link{color:#900;}
a:visited{color:#FFF;}
a:hover{color:#F00;}
a:active{color:#F00;}

but “visited” does not work.

Thank you

Best regards
Oliver

Really no idea ?

Unfortunately the issue cannot be reproduced locally.
css works well for us.

If i press the “link column” color changes … but when i update my grid i have the original color again … i need to know if this row is already pressed

Best regards

Unfortunately the issue cannot be reconstructed.
Please, check your browser settings. You also may check the links out of the grid if they have the same behavior.

I think problem is that it’s not an url link … it’s a javascript link:

// XML
print("<cell><![CDATA[<a href='javascript:oeffne_wonr(".$auftrag['wonr_intern'].");' title='Auftrag öffnen'>".$auftrag['wonr_intern']."</a>]]></cell>");
// JAVASCRIPT
function oeffne_wonr(wonr) {
   window.opener.location.href = "https://www.mds.umdispotool.de/abt/dispo/form.php?id=3&wonr_intern="+wonr;
}

Any idea ?

Got it :smiley: