Forum Moderators: open
Here's my code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#test").text("Test to see if it will fade in.").fadeIn('slow');
});
</script>
<div id="test"></div>
To me that looks fine. Everything works except the fadeIn() part. It places the text in the div correctly and everything that's why it's confusing me.
Thanks in advance for help!