<?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: Microsoft JScript runtime error: Object doesn&#8217;t support this property or method.</title>
	<atom:link href="http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/feed/" rel="self" type="application/rss+xml" />
	<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/</link>
	<description>Jarosław Dobrzański's technical blog</description>
	<lastBuildDate>Sun, 07 Mar 2010 03:39:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: public</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-30530</link>
		<dc:creator>public</dc:creator>
		<pubDate>Thu, 11 Feb 2010 15:27:57 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-30530</guid>
		<description>In my case i had an issue with this bug. After post back my page used to get messed up.. After tracing down i came to know that the culprit was &quot;SmartNavigation&quot;. I disabled it and it worked all fine!!!</description>
		<content:encoded><![CDATA[<p>In my case i had an issue with this bug. After post back my page used to get messed up.. After tracing down i came to know that the culprit was &#8220;SmartNavigation&#8221;. I disabled it and it worked all fine!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Internet Banking</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-30151</link>
		<dc:creator>Internet Banking</dc:creator>
		<pubDate>Thu, 04 Feb 2010 07:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-30151</guid>
		<description>Just wasting  some time  on  Stumbleupon and I found your  entry.  Not  typically what I  prefer to  learn about, but it was  absolutely worth my time. Thanks.</description>
		<content:encoded><![CDATA[<p>Just wasting  some time  on  Stumbleupon and I found your  entry.  Not  typically what I  prefer to  learn about, but it was  absolutely worth my time. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-19080</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 09 Jun 2009 04:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-19080</guid>
		<description>You are getting the error because &lt;strong&gt;class&lt;/strong&gt; is a reserved word in Microsoft&#039;s JScript engine http://msdn.microsoft.com/en-us/library/ttyab5c8.aspx. You cannot use reserved words other wise it will throw exceptions like the one you got above.</description>
		<content:encoded><![CDATA[<p>You are getting the error because <strong>class</strong> is a reserved word in Microsoft&#8217;s JScript engine <a href="http://msdn.microsoft.com/en-us/library/ttyab5c8.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ttyab5c8.aspx</a>. You cannot use reserved words other wise it will throw exceptions like the one you got above.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-19067</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Mon, 08 Jun 2009 20:18:24 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-19067</guid>
		<description>Iona, you have IE 10? that&#039;s pretty new!

You can rig up the Microsoft Scripting for applications to break into the jscript engine and it will give you the line and even a stack trace. Install the scripting host, enable script debug in explorer and &#039;web debugging&#039; in an office app and the options should appear. 

try out: support.microsoft.com/kb/822521</description>
		<content:encoded><![CDATA[<p>Iona, you have IE 10? that&#8217;s pretty new!</p>
<p>You can rig up the Microsoft Scripting for applications to break into the jscript engine and it will give you the line and even a stack trace. Install the scripting host, enable script debug in explorer and &#8216;web debugging&#8217; in an office app and the options should appear. </p>
<p>try out: support.microsoft.com/kb/822521</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Mahon</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-19066</link>
		<dc:creator>Nathan Mahon</dc:creator>
		<pubDate>Mon, 08 Jun 2009 19:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-19066</guid>
		<description>I&#039;m fairly certain there&#039;s a tidbit of doc that covers this...
You&#039;re supposed to use either &#039;class&#039; or className, but not class.

I couldn&#039;t find an explanitory doc about it, but this references it...
http://www.prototypejs.org/api/element/addclassname</description>
		<content:encoded><![CDATA[<p>I&#8217;m fairly certain there&#8217;s a tidbit of doc that covers this&#8230;<br />
You&#8217;re supposed to use either &#8216;class&#8217; or className, but not class.</p>
<p>I couldn&#8217;t find an explanitory doc about it, but this references it&#8230;<br />
<a href="http://www.prototypejs.org/api/element/addclassname" rel="nofollow">http://www.prototypejs.org/api/element/addclassname</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harel Malka</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-19065</link>
		<dc:creator>Harel Malka</dc:creator>
		<pubDate>Mon, 08 Jun 2009 19:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-19065</guid>
		<description>Its because IE can&#039;t handle json packets without explicit strings as keys. The mind boggles how that browser reached such status.

http://www.harelmalka.com/?p=104</description>
		<content:encoded><![CDATA[<p>Its because IE can&#8217;t handle json packets without explicit strings as keys. The mind boggles how that browser reached such status.</p>
<p><a href="http://www.harelmalka.com/?p=104" rel="nofollow">http://www.harelmalka.com/?p=104</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chetan</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-19061</link>
		<dc:creator>Chetan</dc:creator>
		<pubDate>Mon, 08 Jun 2009 18:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-19061</guid>
		<description>Problems like this are easy to detect if you use JSLint. (http://jslint.com/)</description>
		<content:encoded><![CDATA[<p>Problems like this are easy to detect if you use JSLint. (<a href="http://jslint.com/" rel="nofollow">http://jslint.com/</a>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iona</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-10360</link>
		<dc:creator>Iona</dc:creator>
		<pubDate>Wed, 22 Oct 2008 14:58:42 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-10360</guid>
		<description>hi, i cant understand anything here... somehow i was just trying to run a game, Dance Battle Audition but it says this error:

An error has occurred in the script on this page:
Line: 12
Char: 2
Error: Object doesnt support this property or method
Code: 0
URL: https://www.e-games.com.ph/asp/login/t3login_pVK.asp
Do you want to continue running scripts on this page?
Yes / No

Can you teach me simple instructions on how to fix it? Im not really good with all the terms. I have a Windows Vista and Internet Explorer 10. Thanks!</description>
		<content:encoded><![CDATA[<p>hi, i cant understand anything here&#8230; somehow i was just trying to run a game, Dance Battle Audition but it says this error:</p>
<p>An error has occurred in the script on this page:<br />
Line: 12<br />
Char: 2<br />
Error: Object doesnt support this property or method<br />
Code: 0<br />
URL: <a href="https://www.e-games.com.ph/asp/login/t3login_pVK.asp" rel="nofollow">https://www.e-games.com.ph/asp/login/t3login_pVK.asp</a><br />
Do you want to continue running scripts on this page?<br />
Yes / No</p>
<p>Can you teach me simple instructions on how to fix it? Im not really good with all the terms. I have a Windows Vista and Internet Explorer 10. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jarosław Dobrzański</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-10184</link>
		<dc:creator>Jarosław Dobrzański</dc:creator>
		<pubDate>Thu, 16 Oct 2008 14:55:28 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-10184</guid>
		<description>Sorry, I can&#039;t find the reason for your problems...</description>
		<content:encoded><![CDATA[<p>Sorry, I can&#8217;t find the reason for your problems&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://dobrzanski.net/2008/06/11/microsoft-jscript-runtime-error-object-doesnt-support-this-property-or-method/comment-page-1/#comment-10182</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Thu, 16 Oct 2008 13:34:26 +0000</pubDate>
		<guid isPermaLink="false">http://dobrzanski.net/?p=93#comment-10182</guid>
		<description>Hi Jarek,

The thing is, I am using the wicket in this html, if I send u the html, it will just give u wicket error not js as above.
Is there anything u can help with this or way?

Ashish</description>
		<content:encoded><![CDATA[<p>Hi Jarek,</p>
<p>The thing is, I am using the wicket in this html, if I send u the html, it will just give u wicket error not js as above.<br />
Is there anything u can help with this or way?</p>
<p>Ashish</p>
]]></content:encoded>
	</item>
</channel>
</rss>
