sphere
Новичок
innerHtml произвольного тега в ie
Приветствую.
В опере и ff всё ok, ie6 (иеб ) выдаёт "Unknown runtime error". Причина -- customTag.
Подскажите, как можно побороться, не переходя на стандартные теги.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script language="javascript">
function process()
{
doc = document.getElementById( 'ct' );
doc.innerHTML = 'new text';
}
</script>
</head>
<body onLoad="process();">
<customTag id="ct">abc</customTag>
</body>
</html>
Приветствую.
В опере и ff всё ok, ie6 (иеб ) выдаёт "Unknown runtime error". Причина -- customTag.
Подскажите, как можно побороться, не переходя на стандартные теги.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<script language="javascript">
function process()
{
doc = document.getElementById( 'ct' );
doc.innerHTML = 'new text';
}
</script>
</head>
<body onLoad="process();">
<customTag id="ct">abc</customTag>
</body>
</html>