#3754 closed bug (fixed)
1.3b1: (Sizzle) Selectors containing a dot character in an attribute filter value do not work
Reported by: | cbeyls | Owned by: | john |
---|---|---|---|
Priority: | critical | Milestone: | 1.3 |
Component: | selector | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Let's say we have this link in an HTML document:
<a href="http://www.google.com/">Google</a>
This selector works - returns 1 element:
$("a[href^='http://www']")
This selector does NOT work in 1.3b1 because it contains a dot "." in the attribute filter value - returns no element:
$("a[href^='http://www.google']")
The same thing occurs for all attribute filters: = and *= and $= and =.
There must be a problem with a regular expression in Sizzle.
Change History (2)
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Version: | → 1.2.6 |
comment:2 Changed 14 years ago by
Note: See
TracTickets for help on using
tickets.
This is resolved now (in Sizzle, will merge with jQuery core very soon).