enable jquery in wordpress [ 1167 views ]
1. include the jquery into your theme
Find the header.php file in the theme directory and include one line above <?php wp_head(); ?> like this
...
<?php wp_enqueue_script("jquery"); ?>
<?php wp_head(); ?>
...



