The question has gotten rewritten.
An Example:
Here is an example HTML page: http://jsfiddle.net/mwMzD/2/
The Question:
When the Third Page link is selected, and the page is rendered, then the selected anchor tag should still keep the color "white", and not revert back to "grey" (a:visited).
Notice: Do keep in mind that a:visited applies to every visited anchor tag, and not just the last selected anchor tag.
Which methods are needed for this with jQuery?
You need to apply a CSS class to the
Third Pagelink when that page is rendered.You’d then add this
.activeclass to youra:activeselctorNow, when the
Third Pagerenders, the.activeclass will be applied to the link, causing it to take on the same style asa:active.Edit Now that you’ve completely rewritten your question
Please see: http://jsfiddle.net/h67Ec/
Here is the jQuery
and the styling from my original answer (see above) still applies.