There doesnt seem to be a definitive answer anywhere online to this. I understand that you can put:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
Your code here.....
});
</script>
to link your downloaded jquery file. But what code do you have to add so that it works from a javascript file that you have writting your jquery code into?
I like to work from 3 documents (as that is how ive learn on codeacademy) html, css, js. But all i can find online is how to attach the downloaded jquery and then work your jquery code into the html file. So is this possible?
any help would be much appreciated