[jQuery] Re: selector for children of specific element?

2009-01-25 Thread ChrisA
Karl, My solution appears to be along the line of: var elem = getdocument... $(elem).children() ... I hadn't realized that I can pass a DOM element as a selector. Thanks, Chris

[jQuery] selector for children of specific element?

2009-01-24 Thread ChrisA
I need to run thru a table and do something for all rows that have a checkbox that is selected. I have to collect values from several columns in that row. Is there a way in jQuery to find child elements for a specific DOM element or jQuery wrapped set item? Thanks very much. I'm just get