I am trying to do a very basic thing with jQuery, and it's not working at all in IE8 but works fine in Firefox, Safari and Chrome; IE gives me an "Object Expected" all the time.
Can anyone help? I'm not sure what is wrong as the page is very basic:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.2.min.js"></script>
<script type="text/javascript">
$(function() {
alert("It works!");
});
</script>
</head>
<body>
</body>
</html>
IE (and only IE) gives me an error saying "Object Expected" on the loading code. I have the IE Dev Toolbar and $ is undefined but in Firebug it comes up as "function". really don't know what is causing this.

jquery-1.5.2.min.js? – Matt Ball Apr 5 '11 at 15:02