• Just updated to wordpress 3.6 and I have been getting this pop up error when accessing the dashboard and front page. “blockUI requires jQuery v1.3 or later! You are using v1.10.2” Just curious to find out if anyone else is experiencing any issues, and how I would be able to fix it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Is that a plugin?

    If a plugin needs the jQuery version 1.3 or later, the search string should look like this:

    if (/1\.(0|1|2|3)\.(0)/.test($.fn.jquery)

    Most programmers forget, that leaving out “\.(0)/” will cause a result like 1.1, since we reached the version “1.10.x”, because the “0” is not included in the search string and can’t be found.

    “woocommerce”, or “Sexy Login” are just two plugins I found which use an insufficient search string.

    UFHH, you are correct about the test.

    The problem lies in plugins using older versions of the jQuery.BlockUI code. Mine was using 2.39 which did the invalid test for 10. I updated the code to jQuery.BlockUI v2.64, and it all works smoothly now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘An error when upgrading to 3.6’ is closed to new replies.