Hello everyone,
this problem is driving me crazy.
I'm trying to load the integrated jquery-ui using wp_enqueue_script, but it doesn't load.
This is my code:
<?php wp_enqueue_script('jquery');?>
<?php wp_enqueue_script('jquery-ui-core');?>
<?php wp_enqueue_script('jquery-ui-tabs');?>
<?php wp_head(); ?>
As you can see I've put the code before the wp_head function.
While jquery script load the other two does not load at all!
What am I doing wrong?
I'm using wordpress 3.0.4
Hope someone can help,
thanks.