views:

926

answers:

1

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
thanks buddy trying ur code
Senthil Kumar Bhaskaran
Hoppla, I'll delete my answer and give you my up-vote! ;)
Joe