IN IE8
on an anchor tag href i have written a javascript method to redirect to another page. on revisiting the anchor tag visited color not changing to purple
function abc()
{
location = "http://google.com";
return true;
}
<a href="javascript:abc()" > test link for visited color change </a>
On clicking the above anchor tag. redirect to google.com. now click on window back button. the link color is not changing to purple.