#8351 closed bug (duplicate)
Regresion in Attribute selector
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | selector | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Having '/' in an attribute use to work while selection on that attribute in 1.4.4
But in 1.5.0 you get uncaught exception: Syntax error, unrecognized expression: [option=Test/This]
Change History (4)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
Updated the examples
Working (1.4.4) http://jsfiddle.net/KxCmC/2/
Exception (1.5.0) http://jsfiddle.net/cTJ7N/4/
comment:3 Changed 12 years ago by
Component: | unfiled → selector |
---|---|
Priority: | undecided → low |
Resolution: | → duplicate |
Status: | new → closed |
None of the selector in your test case are - and never were - valid selectors (except the TestThis
).
That these worked in earlier versions of jQuery was actually a bug that got fixed in 1.5. This is clearly pointed out in the documentation, so that I don't need to repeat my self check this comment
Note: See
TracTickets for help on using
tickets.
This also affects attributes that have a . in the value eg: option="3.6" cannot be selected via jQuery('[option=3.6]')