Title: No Jquery in theme
Last modified: November 15, 2016

---

# No Jquery in theme

 *  [robertcc18](https://wordpress.org/support/users/robertcc18/)
 * (@robertcc18)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/no-jquery-in-theme/)
 * I have been trying to get Jquery to work for a while now and I still have no 
   luck.
 * Here is my code
 *     ```
       function load_jQuery() { // load external file  
           wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"), false);
           wp_enqueue_script('jquery');
         }  
       add_action('wp_enqueue_scripts', 'load_jQuery');
       ```
   
 * Any help is greatly appreciated!!!

Viewing 1 replies (of 1 total)

 *  [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * (@stephencottontail)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/no-jquery-in-theme/#post-8440531)
 * First, be aware that if you call `wp_enqueue_script()` with `jquery` as the first
   argument, you’ll get WordPress’ built-in jQuery, even if you’ve registered another
   script with the same handle. If you need to use a specific version of jQuery,
   you’ll need to register with a different handle:
 *     ```
       wp_register_script( 'robert-jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"), false);
       wp_enqueue_script( 'robert-jquery' );
       ```
   
 * Beyond that, though, your code itself looks fine. Can you post a link to a page
   where jQuery isn’t loading properly?
    -  This reply was modified 9 years, 9 months ago by [stephencottontail](https://wordpress.org/support/users/stephencottontail/).
      Reason: corrected code
    -  This reply was modified 9 years, 9 months ago by [stephencottontail](https://wordpress.org/support/users/stephencottontail/).

Viewing 1 replies (of 1 total)

The topic ‘No Jquery in theme’ is closed to new replies.

## Tags

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

 * 1 reply
 * 2 participants
 * Last reply from: [stephencottontail](https://wordpress.org/support/users/stephencottontail/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/no-jquery-in-theme/#post-8440531)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
