-
Notifications
You must be signed in to change notification settings - Fork 754
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
With jQuery 1.8.1, QtWebkit browsers yield "Syntax error, unrecognized expression" on selector #132
Comments
in 1.8.x sloppy selectors now throw an error.. http://bugs.jquery.com/ticket/12368 / http://bugs.jquery.com/ticket/12299 |
This breaks on the iPhone (iOS 5.1.1, not sure about 6.0.0), as an FYI.
|
yes, known issue with 1.8.x. use 1.7.2 as they dont throw the error. or wait for 1.8.3 |
How would one know we could wait for 1.8.3 for a fix, or is that just a guess? All of the bugs linked here are currently closed; #12368 & #12299 as invalid, #12237 as fixed in 1.8.1. |
This should now be resolved in version 2.4.7, sorry for taking so long to fix it. |
Consider the following HTML page:
Here, jquery.tablesorter.js can be either version 2.3.11 or the latest master from GIT. And note that the table element is only there so one can test whether tablesorter got successfully loaded by seeing if clicking on "a" or "b" reorders its contents.
In all QtWebkit browsers that I tested (including, for instance, Arora), the above yields:
and reordering the table by clicking on its headers therefore does not work; however, the above works perfectly well with Gecko browsers and used to work with all browsers, including QtWebkit, with jquery-1.7.2.
I found out that it can be made to work with QtWebkit and jquery-1.8.1 by replacing the line
in jquery.tablesorter.js by
but my knowledge of selectors is too limited for me to go any further than that.
The text was updated successfully, but these errors were encountered: