.next() grabs the very next sibling.  I need to be able to grab the
very next occurrence of an object if it's a sibling, cousin (parent's
next sibling's child), uncle/aunt(parent's next sibling), nephew/
niece(sibling's child), or whatever.  If memory serves, .next() used
to have this behavior even if it might not have been intended.  Does
anyone have a good way to execute this type of behavior?

I'm guessing you would need to walk all siblings and their children
recursively.  If that failed, you would need to find your parents
sibling and continue the process.

Thanks in advance for any feedback.

Josh

Reply via email to