On the example.com website, I have added the following HTML (Very important note). Now, I am attempting to add CSS to a selected link in order to highlight the chosen value.
<a class="value" href="http://example.com?filter=value1">Value1
<a class="value" href="http://example.com?filter=value2">Value2 etc
Essentially, I want to apply CSS to the selected anchor tag after it loads example.com?filter=value1.
PLEASE NOTE: .value:selected{color:blue} does not work as the link refreshes the page.