I have the following javascript on my web page ...
64 var description = new Array(); 65 description[0] = "..." 66 description[1] = "..." ... 78 function init() { 79 document.getElementById('somedivid').innerHTML = description[0]; 80 } 81 82 window.onload = init();
The following error occurs in Microsoft Internet Explorer ...
Runtime Runtime Error.
Do you want to debug?
Line: 81
Error: not implemented

Line 79 is executed as expected.
If line 79 is commented out, it still throws an error.
If I comment on line 82, the function will not execute and there will be no error.
source share