[jQuery] Re: Problem selecting a table row

2007-12-08 Thread Kirov
Thank you very much! The has selector really helped ;) All Best, Kiril On Dec 7, 6:48 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Dec 7, 2007, at 11:41 AM, Glen Lipka wrote: > > > One followup. > > tr[th] would only find something like this: > > > > > > The stuff in the brackets are attri

[jQuery] Re: Problem selecting a table row

2007-12-07 Thread Karl Swedberg
On Dec 7, 2007, at 11:41 AM, Glen Lipka wrote: One followup. tr[th] would only find something like this: The stuff in the brackets are attributes, not child elements. Just to clarify ... This is correct as of jQuery 1.2. However, in previous versions (for example, the version that ships

[jQuery] Re: Problem selecting a table row

2007-12-07 Thread Glen Lipka
One followup. tr[th] would only find something like this: The stuff in the brackets are attributes, not child elements. Glen On Dec 7, 2007 7:48 AM, Glen Lipka <[EMAIL PROTECTED]> wrote: > I whipped up a demo for you. > http://www.commadot.com/jquery/selectorHas.php > > Where I figured it out

[jQuery] Re: Problem selecting a table row

2007-12-07 Thread Glen Lipka
I whipped up a demo for you. http://www.commadot.com/jquery/selectorHas.php Where I figured it out: http://docs.jquery.com/Selectors/has#selector Desc: Matches elements which contain at least one element that matches the specified selector. Selector page. Is this the one you looked at? http://do