Modify ↓
Ticket #5570 (closed bug: worksforme)
Expr.filter.ATTR forgets to replace the escape character
| Reported by: | mercenary | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | selector | Version: | 1.3.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description (last modified by snover) (diff)
Maybe you have already noticed, but...
In jQuery.debug.js line 2012:
var name = match[1],
You should change to this:
var name = match[1].replace(/\\/g, ""),
(...as you do in the preFilter too)
Change History
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.

Does look that way, doesn't it?