[wp-trac] [WordPress Trac] #62757: Update jQuery UI library to version 1.14.1
WordPress Trac
noreply at wordpress.org
Fri Feb 13 13:21:28 UTC 2026
#62757: Update jQuery UI library to version 1.14.1
------------------------------------+-------------------------
Reporter: pankaj.sakaria | Owner: (none)
Type: enhancement | Status: new
Priority: normal | Milestone: 7.0
Component: External Libraries | Version:
Severity: normal | Resolution:
Keywords: has-patch dev-feedback | Focuses: javascript
------------------------------------+-------------------------
Changes (by ozgursar):
* keywords: has-patch needs-testing changes-requested => has-patch dev-
feedback
Comment:
== Patch Testing Report
Patch Tested: https://github.com/WordPress/wordpress-develop/pull/10893
=== Environment
- WordPress: 7.0-alpha-61215-src
- PHP: 8.2.29
- Server: nginx/1.29.4
- Database: mysqli (Server: 8.4.7 / Client: mysqlnd 8.2.29)
- Browser: Opera
- OS: macOS
- Theme: Twenty Twenty-Five 1.4
- MU Plugins: None activated
- Plugins:
* Code Snippets 3.9.5
* Test Reports 1.2.1
=== Steps taken
1. Add the plugin provided in the Support Content section that has
`wp_enqueue_script('jquery-ui-core');` and displays its version in the
bottom right of the screen.
2. Visit any page and confirm the enqueued `core.js` version
3. ✅ Patch is solving the problem
=== Expected result
- After applying the patch, enqueued jQuery UI library switches to version
1.14.2
=== Screenshots/Screencast with results
Before
[[Image(https://i.imgur.com/EOERm9t.png)]]
After
[[Image(https://i.imgur.com/JE09EC3.png)]]
=== Support Content
* Testing plugin below is created using `Claude.ai` tool
{{{
/**
* Plugin Name: jQuery UI Version Checker
* Description: Display enqueued jQuery UI version in admin and frontend
*/
add_action('wp_enqueue_scripts', 'check_jquery_ui_version', 999);
add_action('admin_enqueue_scripts', 'check_jquery_ui_version', 999);
function check_jquery_ui_version() {
global $wp_scripts;
// Force enqueue jQuery UI Core to check version
wp_enqueue_script('jquery-ui-core');
// Display version info
if (isset($wp_scripts->registered['jquery-ui-core'])) {
$version = $wp_scripts->registered['jquery-ui-core']->ver;
echo '<div
style="position:fixed;bottom:20px;right:20px;background:#f00;color:#fff;padding:10px;z-index:99999
;border-radius:5px;">';
echo '<strong>jQuery UI Version:</strong> ' . esc_html($version);
echo '</div>';
}
}
// Also log to console
add_action('wp_footer', 'log_jquery_ui_to_console', 999);
add_action('admin_footer', 'log_jquery_ui_to_console', 999);
function log_jquery_ui_to_console() {
?>
<script>
if (typeof jQuery !== 'undefined' && typeof jQuery.ui !== 'undefined')
{
console.log('jQuery UI Version:', jQuery.ui.version);
}
</script>
<?php
}
}}}
--
Ticket URL: <https://core.trac.wordpress.org/ticket/62757#comment:11>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list