Modify ↓
Ticket #3814 (closed bug: fixed)
table tr:first > *:not(:first), doesn't work
| Reported by: | emelendez | Owned by: | john |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3.1 |
| Component: | selector | Version: | 1.3 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
I'm testing “jQuery 1.3 Beta 2″
Ok,In an HTML table, I want to select (in a single query) the cells of the first row, except the first cell.
in jQuery 1.2.6 this worked nicely: $("table tr:first > *:not(:first)")
the use of "*" is because it could be either "th" or "td".
in jQuery 1.3b2 throws an error.
Attachments
Change History
comment:3 Changed 4 years ago by john
- Status changed from new to closed
- Resolution set to fixed
- Version set to 1.3
- Component changed from unfilled to selector
- Milestone changed from 1.3 to 1.3.1
Landed a fix for this in Sizzle: http://github.com/jeresig/sizzle/commit/495f51cba1382e0782a7e6b35e5a6055e5ad4507
Will be merging into jQuery shortly.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.


it is the same bug as Ticket #3745