Hi,
For this site I'm developing, I've got a couple of Javascript scripts for a carousel and an image effect.
Putting the scripts in the header with <script> tags, and everything is fine, works ok. Now, I know this not to be a good way to add scripts.
I've looked into the wp_enque stuff. I changed the default WP jQuery to the Google hosted file, and another jQuery related script, via a plugin, works fine.
But, since I added the other 2 scripts via wp_enque, they have stopped working.
Now, the 2 scripts both have a JS file (which is on the server) and both have an extra bit of JS, which, under normal circumstances is added
<script>
// do some stuff
</script>
like that in the header.
I've added that into an extra file for each script.
All scripts are called in, no 404's been made. jQuery is called in. All the scripts in the header and after jQuery.
But no luck.
Any ideas on why they would stop working via the wp_enque way?