Did you get jammed with some code that doesn’t know that 10 > 2, too? (2, too… ha ha ha) Here’s the fix…
—THREE-STEP FIX—
1) Find the file called “jquery.blockUI.js” or similar on your server
2) Now go looking for code that is testing a version ^1.1/. It will probably look something like this:
if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
3) Give that little version comparison an extra 0.0 so it reads ^1.10.0/. In this example it will look like this:
if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.10.0/.test($.fn.jquery)) {
Voila!