How to check visited link using jquery without using any plugin please help to solve this problem
+4
A:
Just check if it has the :visited
property
if ($("a#theLink:visited").length) {
//anchor tag with id of "theLink" has been visited
}
peirix
2009-09-11 06:44:27
thanks buddy trying ur code
Senthil Kumar Bhaskaran
2009-09-11 06:47:16
Hoppla, I'll delete my answer and give you my up-vote! ;)
Joe
2009-09-11 06:52:20