Hi,
I'm trying to manually load a jquery script in my theme, but I'm surely doing something wrong as is not working.
First off I'm loading jquery in the header.php like this:
<?php wp_enqueue_script("jquery"); ?>
Then I'm loading the script:
<script type="text/javascript"
src="<?php bloginfo("template_url"); ?>/wp-content/themes/sandbox/js/fadeLinks.js"></script>
And lastly I'm adding the css code directly to the style.css:
a{
color:#f30;
font-weight:bold;
text-decoration:none;
}
a span.two{
color:#069;
cursor:pointer;
}
I guess I'm doing possibly everything in the wrong way.