I'm beginner in jquery.this is my first application.
<head>
<title>Untitled Document</title>
<script type="text/javascript" src="../jquery-1.6.2.min.js"></script>
<script type=”text/javascript”>
$(document).ready(function(){
$("a").click(function(){
alert("Hello World");
});
});
</script>
</head>
<body>
<a href=”#”>Click me!</a>
</body>
</html>
but when i click on Click me the alert doesn't showed.what is problem?
(the lib address(src="../jquery-1.6.2.min.js) is correct )