[jQuery] Alert not working

[jQuery] Alert not working


I just started learning jQuery. Could any one help me?
I was following the jQuery tutorial, and the first one does not work.
It is supposed to come up alert with Thanks fo visiting!. But it just
go to a website without alert.
<html>
<head>
<script type="text/javascript" src="jquery-1.2.1.js"></script>
<script type="text/javascript">
// Your code goes here
     $("a").click(function(){
alert("Thanks for visiting!");
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
</body>
</html>