Really looks like you got that correct. Live link would be the only way we could see what's going on and help.
It's still on my dev server at the mo.
Actually after a bit more testing it turns out that the lib is loading and the problem appears to be with the jQuery plugins that I'm using (or maybe how they're called). Some work and some don't in WP, but all work in static test HTML.
This is what I've got in my theme header.php:
But doesn't seem to work?!
Is there anyway to test if the jQuery library is loaded... something equivalent to phpinfo.php ?
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.js"></script>
It's still on my dev server at the mo.
Actually after a bit more testing it turns out that the lib is loading and the problem appears to be with the jQuery plugins that I'm using (or maybe how they're called). Some work and some don't in WP, but all work in static test HTML.
Example:
To try and get my head 'round jQuery, I've followed this tut:
http://net.tutsplus.com/tutorials/javas ... esomeness/
It work's fine in a straight HTML page, so now I'm trying to use it with WP.
In WP I've got the following immediately before </head>:
I also tried enqueueing the "bettertooltip.js" after jquery ( before the wp_head(); ), but that doesn't work either. Like this:
Thanks for the feedback so far, much appreciated!