[jQuery] Re: Bug in jQuery selector or am I just not understanding?

2007-11-26 Thread Mark Lacas
All those divs are necessary for the type of system I'm building. Can't talk about it yet, but when we release I can explain why. Solved the problem by using the in between my selectors. I adore jQuery and love becoming smarter about jQuery every day from this list. Amazing resource. ml

[jQuery] Re: Bug in jQuery selector or am I just not understanding?

2007-11-25 Thread Brett
That code is a bit hard to read I would have written the html to be more semantic, instead of using lots of div tags. Still, the exact code if that was in css should be div div div div.dp_properties - so you can see why it reads a bit confusing. I like the idea of defining a tag and

[jQuery] Re: Bug in jQuery selector or am I just not understanding?

2007-11-25 Thread Dave Methvin
I thought the cascading selectors would have chosen the dp_properties class that is the first child level of the selected div. . .not the dp_properties class buried two levels down (but appearing first in the DOM listing). jQuery selectors work pretty much the same way they do in CSS. This