Hi
I have the following code appearing multiple times on an html page (text values differ):
<div>
<a href="1.html">
<span class="e">
<span class="1">stuff1</span>
<span class="2">stuff2</span>
<span class="3">stuff3</span>
</span>
</a>
<a class="click" href="2.html">link</a>
</div>
what I'm trying to do is when the link "link" is clicked, spawn a dialog with values of stuff1, stuff2 and stuff3. I'm having trouble actually getting to the values of the spans. Effectively what I want is to take $(this) and get the text of it's sibbling's only span child's span children.
Thanks! -Mala