treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] jquery in wordpress help

  • I am having trouble getting my jquery to work in wordpress. I have called the script from the functions.php file and I can see it in the header when I view the source.


    function reservations_script(){
    wp_register_script('reservations', get_template_directory_uri() . '/js/reservations.js', array('jquery'));
    // enqueue the script
    wp_enqueue_script('reservations');
    }
    add_action('wp_enqueue_scripts','reservations_script');


    I can also see jquery being called in my header of my site

    but if I do a simple test in the header, nothing happens


    <script type="text/javascript">
    $(document).ready(function(){
    alert('test');
    });
    </script>


    I have also tried $jQuery(document)

    Got any ideas?
  • jQuery is definitely being loaded? Are you using Google's CDN or an uploaded copy?
  • I just got it working. I had to deregister jquery and then register they jquery from google.