[jQuery] Fw: [jQuery] Using jQuery in Wordpress

[jQuery] Fw: [jQuery] Using jQuery in Wordpress


Sean,
In your header file (header.php) you need to add the following line BEFORE
the line that reads <?php wp_head(); ?>.
<?php wp_enqueue_script('jquery'); ?>
so that it reads:
<?php wp_enqueue_script('jquery'); ?>
<?php wp_head(); ?>
Gerry