Please update jQuery to remove need for jQuery migration
-
Version: 10.1.30
When using the development version of jQuery Migration (unminified version), it warns that.change()
is being used. Please remove the deprecated method to remove the dependency.JQMIGRATE: jQuery.fn.change() event shorthand is deprecatedmigrateWarn
If you only want to enable the development version of jQuery migration, you can use the below code:
<?php add_action ('wp_enqueue_scripts', 'dev_jquery_migration'); function dev_jquery_migration() { global $wp_scripts; if (isset($wp_scripts->registered['jquery-migrate']->ver)) { $jquery_version = $wp_scripts->registered['jquery-migrate']->ver; wp_deregister_script ('jquery-migrate'); wp_register_script ('jquery-migrate', "/wp-includes/js/jquery/jquery-migrate.js?ver=$jquery_version"); } }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Please update jQuery to remove need for jQuery migration’ is closed to new replies.