I am trying to fade in whatever shows up in (div id="content").
I have this to load JQuery to the page:
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript" src="rocoffee.js"></script>
And here is what is in rocoffee.js
$(function(){
$('#content').fadeIn('slow');
});
I have yet to see this event take place when I load my page.
Note: I do have a jquery.js file to use, but I tried to use the above based on answers I've read. Same outcome regardless.