ジャバスクリプトの翻訳機能

最近インターネットエクスプロらーの最新版に大問題を見つけました。各サイトにジャバスクリプトを起動させるリンクをクリックしても何も発生しませんでした。
Using the following Javascript and HTML, IE was tested before and after re-install. The JavaScript did not execute before the browser reinstall and did execute thereafter. Thus, it is suspected that some setting disabling invocation of the Chakra JavaScript interpreter was an issue. Note that, if onLoad were to simply call document.onWrite, no static html would be rendered.
障害の原因はやっぱりブラウザーの設定でした。ブラウザーのジャバスクリプトに関わるコンパイルとカッシュ処理をまだ調査しています。
function hello(){
document.getElementById("subheading").innerHTML="Hello Style from Endor of Calrissian
";
document.getElementById("subheading").innerHTML+="Yoda mandates that Coruscant mobilize";
}



twc html

Note that the DOM tree represents the browser's memory image of the HTML document which can be manipulated by JavaScript before and after rendering.