I was really against the removal of the parent selector ('..') I used to use it a lot. But well.. that's history now :)
Cheers Ariel Flesler On Feb 25, 8:52 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Jean-Sébastien wrote: > > hi, i try to select every element that is not children of another div. > > i tried different ways but didn't find a solution. > > > regards > > Try: > > $('body *').filter(function() { > return this.parentNode.nodeName.toLowerCase() != 'div'; > > }); > > Don't think that will perform very well, but I cannot think of another > way if you need it that generic. > > --Klaus