• Resolved adebaby

    (@adebaby)


    WordPress always used to be behind the JQuery curve which gave time for plugins and frameworks to fix bugs before moving ahead but now it’s jumped to the latest and many things have broken.

    I have a problem with jQuery UI elements which no longer work properly but are fine with jQuery 1.5.2. I have to override the 1.6.1 with a 1.5.2 download which breaks some of the admin UI but the site seems to work fine

    Please go back a step with jQuery

    Also I hate the font in the admin text input area

    You guys need to calm down with updates to the admin. WordPress is about what the user views and breaking sites with fancy admin features is no good to anyone.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter adebaby

    (@adebaby)

    Aha!

    WordPress is using 1.6.1 but forcing to 1.6.2 fixes my jQuery UI bugs

    As you were……

    add_filter(‘script_loader_src’, ‘my_script_loader_src’, 10, 2);

    function my_script_loader_src($src, $handle)
    {
    if ($handle == “jquery”)
    return “https://code.jquery.com/jquery-1.6.2.min.js”;
    return $src;
    }

    Thread Starter adebaby

    (@adebaby)

    but my point about not jumping to the latest versions of frameworks still stands. WP should be a little behind the curve

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Too soon with Jquery 1.6 / WP 3.2’ is closed to new replies.