Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
a:link {color:#FF0000} /* unvisited link */
a:visited {color:#00FF00} /* visited link */
a:hover {color:#FF00FF} /* mouse over link */
a:active {color:#0000FF} /* selected link */

The pseudo-classes (link, visited, hover, active) don't do exactly what I want which is to highlight the last-clicked link on a page to be a different color from all of the other links on the page.

Would this require JQuery and, if so, any suggestions?

share|improve this question
Are you trying to retain this last-clicked link from page to page? – hunter Jul 20 '09 at 0:18

2 Answers

up vote 6 down vote accepted

It wouldn't require jQuery, but it's sure easy to do with jQuery.

$("a").click(function () { 
      $("a").css("color", "blue");
      $(this).css("color", "yellow");
    });
share|improve this answer
Wow. That's nice. Can't believe how little code it takes. Thanks. – blueberry pancake Jul 19 '09 at 23:35
jQuery rocks the kasbah. – womp Jul 19 '09 at 23:36
Would love a comment on the downvote. – womp Jul 19 '09 at 23:48
You don't use classes, plus you duped my answer 4 minutes later. I didn't think it added anything. No offense meant. – Adam A Jul 19 '09 at 23:51
It is certainly not a dupe, and I resent the accusation. I hope you don't downvote answers in all the threads that you yourself personally answer. – womp Jul 20 '09 at 0:20

You definitely can't do it with css.

With jQuery you could do something like

$("a").live("click", function() {
    $("a").removeClass("yourHighlightClass");
    $(this).addClass("yourHighlightClass");
});
share|improve this answer
Why do you use a.bind instead of a.click? I'm not familiar with bind. – blueberry pancake Jul 19 '09 at 23:33
blueberry pancake, click(callback) is a shortcut to bind('click', callback) – eyelidlessness Jul 19 '09 at 23:35
1  
Adam A, wouldn't .live() be a better fit? – eyelidlessness Jul 19 '09 at 23:36
touche. will edit. – Adam A Jul 19 '09 at 23:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.