Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

There are a list of links on a page and some of them are already visited by me. I have to make them invisible after any action(checking a checkbox, clicking button, etc).

I tried to use jQuery: $("a:visited").hide(300); but it doesn't seem to work.

UPD: So, the scenario is:

1) the user clicks a button;

2) all the visited links disappear.

jsFiddle example

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
361 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can try full CSS method :

a:visited { display: none; }

Or

a:visited { visibility: hidden; }

Or you can use a plugin method : Visited Plugin by Remy Sharp

Usage in jQuery :

$('a').visited().addClass('visited');

With CSS :

.visited { display: none; }

Or

.visited { visibility: hidden; }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...