Title: Load newer JQuery version..
Last modified: August 20, 2016

---

# Load newer JQuery version..

 *  [Knipple](https://wordpress.org/support/users/knipple/)
 * (@knipple)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/load-newer-jquery-version/)
 * Im trying to load the latest version of jQuery (1.8.3) inside my theme. I`ve 
   tried a few things including both of the following inside my themes header.php
   as follows:
 *     ```
       wp_enqueue_script('jquery','//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js', true);
       ```
   
 * Also tried to de-register jquery and register with new one as follows:
 *     ```
       wp_deregister_script('jquery');
       wp_register_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js', true);
       ```
   
 * And finally tried putting the following into functions.php :
 *     ```
       function my_enqueue_scripts() {
       	wp_deregister_script('jquery');
       	wp_register_script('jquery','http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js');
       	wp_enqueue_script('jquery');
       }
   
       add_action('wp_enqueue_scripts', 'my_enqueue_scripts');
       ```
   
 * But no joy whatsoever so far.. Any help appreciated!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [Prasath Mani](https://wordpress.org/support/users/prasathpree/)
 * (@prasathpree)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/load-newer-jquery-version/#post-3255988)
 * Hi Knipple,
 * Try this
 * `wp_register_script ('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/
   jquery.min.js', array(), '1.8.3', true);`
 *  Thread Starter [Knipple](https://wordpress.org/support/users/knipple/)
 * (@knipple)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/load-newer-jquery-version/#post-3255995)
 * Hi Prasath,
 * Unfortunately that isnt working. Im checking which script is loading via Firebug
   and when i use enqueue etc it changes the order that jQuery loads but keeps loading
   1.6.4 …
 * _[[No bumping](http://codex.wordpress.org/Forum_Welcome#No_Bumping). If it’s 
   that urgent, consider [hiring someone](http://jobs.wordpress.net/).]_

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Load newer JQuery version..’ is closed to new replies.

## Tags

 * [enqueue](https://wordpress.org/support/topic-tag/enqueue/)
 * [jquery](https://wordpress.org/support/topic-tag/jquery/)
 * [register](https://wordpress.org/support/topic-tag/register/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [Knipple](https://wordpress.org/support/users/knipple/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/load-newer-jquery-version/#post-3255995)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
