Whenever I attempt to run a selection of javascript I always get the following console errors in IE7,8 or 9. However, it works fine in any other browser.
SCRIPT438: Object doesn't support property or method 'addEventListener'
jquery-2.0.3.min.js, line 3 character 6105
SCRIPT5009: 'jQuery' is undefined
jquery.animate-colors.js, line 8 character 1
SCRIPT5007: The value of the property '$' is null or undefined, not a Function object
localhost, line 100 character 2
Find below the code I am attempting to run (eliminated unimportant code, jquery is loaded before any of its plugins).
<script>
$(window).load(function() {
$("#titleFirstname").delay(200).fadeIn(500);
$("#titleLastname").delay(450).fadeIn(500);
$("#enterSite").delay(650).fadeIn(500);
$("#enterSite").hover(function() {
$(this).animate({backgroundColor: 'rgba(255, 255, 255, 0.5)'}, 100)
}, function() {
$(this).animate({backgroundColor: 'rgba(255, 255, 255, 0.2)'}, 100)
});
$("#footer").delay(500).animate({bottom: '5px'});
});
</script>
<div id="primaryContainer">
<div id="titleFirstname">
TEXT
</div>
<div id="titleLastname">
TEXT
</div>
<a href="#">
<div id="enterSite">
ENTER SITE
</div>
</a>
</div>