Lets say I have this DOM structure
<body>
<p>
Hello
<i>how <b>are</b> you</i>
and
<i>what <b>are <tt>you</tt> going</b> to</i>
eat tonight?
</p>
</body>
Using jQuery I want to get to know the FIRST shared parent of the
<b>are</b>
and the
<tt>you</tt>
From down to top this would be the < p > not the < body > tag.
Any ideas on how to determine the first shared parent utilizing jQuery?