I am new in jQuery. To see my first hello world page, I have below code, but the result is a bare page without any alerting! it seems it can not read from jQuery-1.11.0 which I downloaded in the same directory of my html page.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Hello World</title>
<script type="text/javascript" src="jquery-1.11.0.min.js"> </script>
<script type="text/javascript">
$("document").ready(function() {
alert ("Hello World");
});
</script>
</head>
<body>
</body>
</html>