i'm having this markup:
<div class=gui>
<div class=form>
<div class=textbox></div>
<div class=textbox></div>
<div class=textbox></div>
<div class=selectbox></div>
<div class=selectbox></div>
<div class=button></div>
</div>
</div>
what i want to do is iterate the divs and find their corresponding parents. like:
textboxes > form
selectbox > form
button > form
form > gui
here's my jQuery selector:
var dParent = div.closest("div.form, div.gui");
it works nice for the text- and selectboxes, but not for the form. the strange thing is that the form reports itself as parent instead of the gui.
any ideas what could be wrong?
thanks
parent()?.... – Šime Vidas Mar 26 '11 at 16:18