I am trying to get this to work but Jquery will not work unless its linked with googles script.
here is the way I have it listed in my header.php:
<?php wp_enqueue_script('jquery'); ?>
<?php wp_enqueue_script('jquery-ui-core'); ?>
<?php wp_enqueue_script('jquery-ui-tabs'); ?>
<?php wp_head(); ?>
<script type="text/javascript">
jQuery(document).ready(function($){
$("#photo-rotator").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 4000);
});
</script>
Is there anything else I have to do to get this to work for me? Im running this on my localhost, could this be an issue for some reason?
thanks for the help, this is my first encounter with this someone asked “why are you linking to google and not using enque method” and I said what the heck is that, let me check it out, but I cant get it to work thus far.
thanks guys
Glen