Wow...it did show up, then! Darn. I reposted (almost) for nothing. Thanks for answering, Klaus.
Is there a way to do this w/o using XPath? Now that it's been pushed off to a plugin, I'd rather stick with core Jquery. - Will On Sep 11, 8:31 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Will B. wrote: > > I currently know how to do this: > > $("//[EMAIL PROTECTED]'123']").remove() ; > > > This removes a table row that of the style: <tr customID="123" > > > > However, these rows in this complex table also have another fashion > > that I've been using: > > <tr customID="123" aID="1" bID="2" cID="3"> > > > How can I use Jquery to select rows that have aID="1" and bID="2", but > > (in this case) ignoring the customID and the cID. > > Will, try: > > $("//[EMAIL PROTECTED]'1'[EMAIL PROTECTED]'2']").remove(); > > --Klaus