I want to load jQuery from Google, but it always fails to load. What is wrong in my source code?
Mistake
(X) GET file://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
CODE
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta content='IE=8' http-equiv='X-UA-Compatible'>
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<link rel="stylesheet" type="text/css" href="">
<title></title>
</head>
<body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>console.log($('body').height());</script>
</body>
</html>