Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get a common parent for two DOM elements [duplicate]

Possible Duplicate:
How to find the nearest common ancestors of two or more nodes?

I have 2 anchor elements and i need to get the common parent of 2 of them.

Some times they are in a ul, sometimes in a table, or any other way.

I am doing this:

var idParent = $(elem1).parents().filter($(elem2).parents()).first().attr('id');

But it doesnt always work, i finds it element sometimes...

Any better idea? or a way to fix this?

EDIT: I want a jquery solution.

Thank you

like image 387
Ovi Avatar asked Oct 04 '11 12:10

Ovi


1 Answers

var parent = $(elem1).parents().has(elem2).first();
like image 192
Yuriy Rozhovetskiy Avatar answered Oct 10 '22 09:10

Yuriy Rozhovetskiy