So this is a specific issue that I’ve found with jQuery UI, not jQuery as a whole. I need to specify that to help. Here’s what I added to my theme’s functions.php file to update:
function kd_admin_scripts() {
wp_enqueue_script('ui','https://code.jquery.com/ui/1.10.3/jquery-ui.js',array('jquery'));
}
add_action('admin_print_scripts', 'kd_admin_scripts');