[jQuery] question about changes to :not() in 1.3
Here I am trying to get every element which is not a div that contains
another div.
Is $(':not(div:has(div))') supposed to now be equivalent to $('*').not
($('div:has(div)')) or am I misunderstanding what the change was (I'm
just getting started with jQuery)?
Thanks!