up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to select all visited links via jQuery. Here is the HTML

<div class="question-summary">
    <a class="question-hyperlink">Stuff</a>
</div>

If question-hyperlink has been visited, I was to select question-summary. Any ideas?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Check out Remy Sharp's jquery.visited.js plugin.

link|improve this answer
feedback

Here is the selection:

$("a:visited").parent(".question-summary")

Usage example:

$("a:visited").parent(".question-summary").addClass("is_visited");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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