-
Notifications
You must be signed in to change notification settings - Fork 20.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jQuery function filter with attribute name contains square bracket is not working #4170
Comments
This seems valid. However, the easy workaround is to wrap your value in quotes. https://jsfiddle.net/Lqv9yjn3/10/ |
I know we've seen these reports before but I'm too lazy to look it up in closed issues. The CSS spec says:
Identifiers don't have |
Identifiers can have escaped characters. In this case, escaping the |
Actually, this is fixed in Sizzle master (jquery/sizzle#408), but we need to update Sizzle in jQuery. |
Fixes jquerygh-1756 Fixes jquerygh-4170 Fixes jquerygh-4249
Description
Select elements by name attribute, then use filter with selector. If the selector contains square bracket, sometimes the filter did not work as expected.
In the test case, the first console.log returns 2 as expected.
The second console.log returns 0 which expected to be 1.
Link to test case
http://jsfiddle.net/Lqv9yjn3/1/
The text was updated successfully, but these errors were encountered: