Side navigation
#5957 closed bug (invalid)
Opened January 27, 2010 04:05PM UTC
Closed December 04, 2010 08:05AM UTC
Last modified March 13, 2012 11:28PM UTC
Error on Sizzle.selectors.filter.PSEUDO
Reported by: | mmchida | Owned by: | mmchida |
---|---|---|---|
Priority: | major | Milestone: | 1.4.2 |
Component: | selector | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I have an application that works perfectly with jquery-1.3.2. While I tested the new version of jquery-1.4.1, I have an error in line 3106 (Sizzle.error( "Syntax error, unrecognized expression: " + name )).
I debug the application in Chrome and see that the parameter "match" of "PSEUDO" function is an array of [select, select, undefined, undefine].
So, the local variable "name" has a value "select" and the local variable "filter" has a value "undefined", throwing the Sizzle.error.
I'm new in Javascript, so I can be wrong, but I think the cause of this error is the function Expr.filters[name], that evals the local variable "name" and don´t have a filter for "select" element.
Sorry for my bad english too.
Attachments (0)
Change History (3)
Changed January 27, 2010 04:33PM UTC by comment:1
Changed November 19, 2010 11:13AM UTC by comment:2
owner: | john → mmchida |
---|---|
status: | new → pending |
Please provide a working, minimal test case demonstrating this issue.
Changed December 04, 2010 08:05AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
In line 3045 is necessary to add the function:
select: function(elem) {
return "select" === elem.nodeName.toLowerCase();
}
Textareas maybe wrong too.