Now, I'm having the problem where JS down lower in the page (body) won't end up working, unless I add the same jQuery library right before the call.
for example, I want this to run (this is located in the body):
<script type="text/javascript">
$(document).ready(function() {
[INDENT][INDENT]alert("hello");
[/INDENT][/INDENT] });
</script>
It will NOT run unless I paste this right about this $(document).ready( call... :
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
However, that's ALREADY in the header - and I know it because I can view source on the page and see it twice, clearly...
What is going on here?
Thanks


Sign In
Create Account


Back to top










