$(document).ready のコードが実行されない Apps Scripts のプロジェクトがあります。http://caja.appspot.com/でこの基本的なコードも試しましたが、これも機能しません。
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$( document ).ready(function() {
$("span").text("Working");
});
</script>
</head>
<body>
<span>Not Working</span>
</body>
</html>
「動作していません」というテキストが表示されます。jQueryバージョン2.xxでも試しました
何か案は?
ありがとう