Hi, I added in some custom transition fades, and they aren't working.
I've even put them directly in-line before the ending head tag and it doesn't work. Here's my code (makes the entire body fade in):
<script type="text/javascript">
$(document).ready(function() {
$("body").css("display", "none");
$("body").fadeIn(2000);
});
</script>
And more importantly, I've also tried to put a fade hover for links:
<script type="text/javascript">
$(document).ready(function(){
$("a").fadeTo("fast", 1.0); // This sets the opacity of the thumbs to fade down to 100% when the page loads
$("a").hover(function(){
$(this).fadeTo("fast", 0.5); // This should set the opacity to 50% on hover
},function(){
$(this).fadeTo("fast", 1.0); // This should set the opacity back to 100% on mouseout
});
});
</script>
Nothing seems to work. Is there something blocking the code?