[jQuery] Basic Example not working

[jQuery] Basic Example not working


I have the following code in my file, the src for the jquery file is
correct. I view the page in the browser and it just goes to the jQuery
page, no alert box. Any idea why this is happening?
<html>
<head>
<script type="text/javascript" src="jquery-1.1.3.js"></script>
<script type="text/javascript">
$("a").click(function(){
alert("ahh");
return false;
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>