RxJSを読み込むとTypeErrorが起きてしまう。
JavaScriptでRxJS/dist/rx.all.min.js
を読み込むと
TypeError: a is null
が起きてしまいます。
なぜ起きてしまうのでしょうか?
下記が実際のコードです。
ブラウザは Firefox 37を使っています。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<script src="RxJS/dist/rx.all.min.js"></script>
</head>
<body>
<p>Hello</p>
<div id="divHello">
Hello
</div>
<script>
var divHello = document.querySelector("divHello");
</script>
</body>
</html>