div に動的コンテンツを表示する必要があります。コンテンツは毎秒更新されます。これらのコードを試してみましたが、IE では機能しません。
jQuery('#test').html("end"); // this works normal with opera , with html tags
// or
document.getElementById('test').innerHTML = "End"; // this doesnt work normal in opera with html tags
// or
$('test').text('end');
私はIE 8でテストしています。