I have tried to use wp_enqueue, and I can't figure out how to implement it. I have resorted to just using bloginfo to link to my JS file. It works fine on my remote server, but as soon as I upload to my host the resource is not found. Not sure why this would be happening.
<script src="<?php bloginfo("template_url"); ?>/js/test.js">
this is the output the browser sees
<script src="http://fiftyfity.com/wp-content/themes/fiftyfityNew/js/test.js">
</script>tag? Other than that, the only other issue is whether something is seriously wrong in the HTML before this script tag or if the path to test.js is wrong. – jfriend00 Feb 21 '12 at 4:12