<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Unknown runtime error in Internet explorer?</title>
	<atom:link href="http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/</link>
	<description></description>
	<lastBuildDate>Wed, 30 Nov 2011 05:52:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
	<item>
		<title>By: Brad Fallon</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-39965</link>
		<dc:creator>Brad Fallon</dc:creator>
		<pubDate>Tue, 01 Mar 2011 17:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-39965</guid>
		<description>What is a runtime library and what is a runtime error? How can I correct this problem?</description>
		<content:encoded><![CDATA[<p>What is a runtime library and what is a runtime error? How can I correct this problem?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: simon</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-39409</link>
		<dc:creator>simon</dc:creator>
		<pubDate>Thu, 10 Feb 2011 11:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-39409</guid>
		<description>This gave me a starter for ten - thanks for posting it.</description>
		<content:encoded><![CDATA[<p>This gave me a starter for ten &#8211; thanks for posting it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Brodsky</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-36568</link>
		<dc:creator>Mark Brodsky</dc:creator>
		<pubDate>Wed, 06 Oct 2010 20:50:41 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-36568</guid>
		<description>I had this same problem with the &quot;Unknown Runtime Error&quot; in IE 8 - code worked fine in Firefox and Safari...  

But, I was not illegally placing a block element into an inline or other element.  I was simply updating the innerHTML of a SPAN within a surrounding DIV.  So no problem, right?

Pulled my hair out trying to figure out what was happening until I thought maybe I was using a reserved keyword.... Sure enough - my SPAN ID was &#039;type&#039;.  I changed it to &#039;typer&#039; and it all worked fine.

The funny thing about this is that it WAS working fine.  Must have been a Windows update that caused it to suddenly fail.</description>
		<content:encoded><![CDATA[<p>I had this same problem with the &#8220;Unknown Runtime Error&#8221; in IE 8 &#8211; code worked fine in Firefox and Safari&#8230;  </p>
<p>But, I was not illegally placing a block element into an inline or other element.  I was simply updating the innerHTML of a SPAN within a surrounding DIV.  So no problem, right?</p>
<p>Pulled my hair out trying to figure out what was happening until I thought maybe I was using a reserved keyword&#8230;. Sure enough &#8211; my SPAN ID was &#8216;type&#8217;.  I changed it to &#8216;typer&#8217; and it all worked fine.</p>
<p>The funny thing about this is that it WAS working fine.  Must have been a Windows update that caused it to suddenly fail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tommy</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-35379</link>
		<dc:creator>Tommy</dc:creator>
		<pubDate>Tue, 15 Jun 2010 19:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-35379</guid>
		<description>Good advice... I googled the topic, and before i looked, i just tried to use the .html() and .append() jquery functions, which worked beautifully... so there is solution numero dos</description>
		<content:encoded><![CDATA[<p>Good advice&#8230; I googled the topic, and before i looked, i just tried to use the .html() and .append() jquery functions, which worked beautifully&#8230; so there is solution numero dos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ben</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-30929</link>
		<dc:creator>ben</dc:creator>
		<pubDate>Wed, 18 Nov 2009 08:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-30929</guid>
		<description>Let&#039;s try that again. Another data point:

In IE7, I was trying to replace a table via AJAX:

&lt;pre&gt;
getElementById(”table”.innerHTML = http.responseText;
…
  &lt;table id=&quot;table&quot;&gt;
    ...
  &lt;/table&gt;

…
&lt;/pre&gt;

and IE7 gave this stupid “unknown runtime error” message.

When I enclosed the table in a &lt;div&gt;:

&lt;pre&gt;
&lt;div id=&quot;tableContainer&quot;&gt;
  &lt;table id=&quot;table&quot;&gt;
  &lt;/table&gt;
&lt;/div&gt;
&lt;/pre&gt;

then *both* of these worked great:

&lt;pre&gt;
getElementById(”table”).innerHTML = http.responseText;

getElementById(”tableContainer”).innerHTML = http.responseText;
&lt;/pre&gt;

That is, I could replace both the table and the table container by their IDs.

HTH

– ben</description>
		<content:encoded><![CDATA[<p>Let&#8217;s try that again. Another data point:</p>
<p>In IE7, I was trying to replace a table via AJAX:</p>
<pre>
getElementById(”table”.innerHTML = http.responseText;
…
  &lt;table id="table"&gt;
    ...
  &lt;/table&gt;

…
</pre>
<p>and IE7 gave this stupid “unknown runtime error” message.</p>
<p>When I enclosed the table in a &lt;div&gt;:</p>
<pre>
&lt;div id="tableContainer"&gt;
  &lt;table id="table"&gt;
  &lt;/table&gt;
&lt;/div&gt;
</pre>
<p>then *both* of these worked great:</p>
<pre>
getElementById(”table”).innerHTML = http.responseText;

getElementById(”tableContainer”).innerHTML = http.responseText;
</pre>
<p>That is, I could replace both the table and the table container by their IDs.</p>
<p>HTH</p>
<p>– ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ben</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-30928</link>
		<dc:creator>ben</dc:creator>
		<pubDate>Wed, 18 Nov 2009 08:01:51 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-30928</guid>
		<description>Another data point:

In IE7, I was trying to replace a table via AJAX:

  getElementById(&quot;table&quot;.innerHTML = http.responseText;
   ...
   ...
  
   ...
  

and IE7 gave this error.

When I enclosed the table in a :

 &lt;div id=&quot;tableContainer&quot;
  
   ...
  
 

then *both* of these worked:

    getElementById(&quot;table&quot;.innerHTML = http.responseText; 

    getElementById(&quot;tableContainer&quot;.innerHTML = http.responseText;

HTH 

-- ben</description>
		<content:encoded><![CDATA[<p>Another data point:</p>
<p>In IE7, I was trying to replace a table via AJAX:</p>
<p>  getElementById(&#8220;table&#8221;.innerHTML = http.responseText;<br />
   &#8230;<br />
   &#8230;</p>
<p>   &#8230;</p>
<p>and IE7 gave this error.</p>
<p>When I enclosed the table in a :</p>
<p> &lt;div id=&quot;tableContainer&quot;</p>
<p>   &#8230;</p>
<p>then *both* of these worked:</p>
<p>    getElementById(&#8220;table&#8221;.innerHTML = http.responseText; </p>
<p>    getElementById(&#8220;tableContainer&#8221;.innerHTML = http.responseText;</p>
<p>HTH </p>
<p>&#8211; ben</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexander Ewering</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-30775</link>
		<dc:creator>Alexander Ewering</dc:creator>
		<pubDate>Mon, 09 Nov 2009 08:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-30775</guid>
		<description>No need for fanboyish Microsoft Bashing, please.

And BTW, MSIE8 still does this (same error message), so it&#039;s not an MSIE6 issue.</description>
		<content:encoded><![CDATA[<p>No need for fanboyish Microsoft Bashing, please.</p>
<p>And BTW, MSIE8 still does this (same error message), so it&#8217;s not an MSIE6 issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deepika</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-29946</link>
		<dc:creator>Deepika</dc:creator>
		<pubDate>Thu, 22 Oct 2009 13:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-29946</guid>
		<description>Hi,

I am facing same problem.I am using div but still error is coming.
Please help me out.

My code is

&lt;pre&gt;
function updatepage(str,arg){
	
	//alert(str);str=html element

	var obj=document.getElementById(&#039;sub3&#039;);
	try
	{
		obj.innerHTML=str;
	}
	catch(ex)
	{
	alert(ex.message); // never displayed
	}
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am facing same problem.I am using div but still error is coming.<br />
Please help me out.</p>
<p>My code is</p>
<pre>
function updatepage(str,arg){

	//alert(str);str=html element

	var obj=document.getElementById('sub3');
	try
	{
		obj.innerHTML=str;
	}
	catch(ex)
	{
	alert(ex.message); // never displayed
	}
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell Dodd</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-28672</link>
		<dc:creator>Russell Dodd</dc:creator>
		<pubDate>Wed, 26 Aug 2009 18:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-28672</guid>
		<description>Thanks, my error was I had a &lt;a tag surrounding div tag (it was a same page #anchor tag); closed the tag before starting the div and all was well</description>
		<content:encoded><![CDATA[<p>Thanks, my error was I had a &lt;a tag surrounding div tag (it was a same page #anchor tag); closed the tag before starting the div and all was well</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agnor</title>
		<link>http://www.gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/comment-page-2/#comment-28541</link>
		<dc:creator>agnor</dc:creator>
		<pubDate>Wed, 19 Aug 2009 18:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://gljakal.com/blog/2006/02/19/unknown-runtime-error-in-internet-explorer/#comment-28541</guid>
		<description>big help, thanks for the post.  Dumb to require email addresses for comments, though.</description>
		<content:encoded><![CDATA[<p>big help, thanks for the post.  Dumb to require email addresses for comments, though.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

