WordPress Admin panel issue

When you enqueue new libraries to WordPress for the sake of front-end effect only, it is highly recommended to preface the function in the conditional if (!is_admin()); , thus:

/**
 * Load newer jQuery min file.
 */
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
   wp_deregister_script('jquery');
   wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js", false, null, false);
   wp_enqueue_script('jquery');
}

Additionally, wp_enqueue_script() has the necessary options to specify loading in the footer, and only once other dependencies have loaded. Read more here.