xxxxxxxxxx
<a href="#" target="_top">Opens the linked document in the full body of the window</a>
xxxxxxxxxx
// Parent
$(this).parent();
// Grand Parent
$(this).parent()->parent();
// you can add the name of the parent tag,id,class as a param
$(this).parent('div');
//Jerespy