I am having a tree of ul li. I have either a checkbox or a radio control for each set of child nodes.
What I am doing is when I check any checkbox or radio I want all the nodes to be unchecked except for the sibling (in case of checkbox). So I have written my jquery here.
My jquery is working expect for one problem which I need help.
It is below:
if($(this).parent().parent().parent() != $(elem).parent().parent().parent())
The whole fiddle is here
In the above condition when I compare the same parents I should get false sometimes.
Please look into the code and help to understand why they are always returning true.
if($(this).parent().parent().parent()[0] != $(elem).parent().parent().parent()[0])– jbabey Jul 20 '12 at 12:45$()returns a new object. – Pointy Jul 20 '12 at 12:46.parent()chain, you might consider using something like.closest('li')to find the first parent<li>node. – Pointy Jul 20 '12 at 12:47