<?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: Object doesn&#8217;t support this property or method &#8211; Javascript Error</title>
	<atom:link href="http://www.javascriptjunkie.com/index.php?feed=rss2&#038;p=12" rel="self" type="application/rss+xml" />
	<link>http://www.javascriptjunkie.com/?p=12</link>
	<description>JavaScript - DHTML - AJAX</description>
	<lastBuildDate>Thu, 08 Apr 2010 19:22:30 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Chester</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-8845</link>
		<dc:creator>Chester</dc:creator>
		<pubDate>Thu, 08 Apr 2010 19:22:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-8845</guid>
		<description>&quot; #30  mark on 01.13.09 at 1:04 am

    For mine, the system is working for 2-3 times and then it is throwing this error of object doesn’e support…..

    Means when i start the applicaiton works fine but after a certain 2-3 times clicking it throws this error.
    Please help me out in this
&quot;

I&#039;ve been working on this same exact error off and on now for the last month (had to dedicate time to more important stuff), and I seem to have just solved it.  

It was happening specifically and only to an iframe element I have pointing to an .htm page with a Flowplayer video, while a secondary fancybox element on the same page that was consequently NOT calling an iframe was consistently working just fine.

So, like everyone else here has been saying, it was a simple error and totally my own damn fault...

Here was the offending code:

$noConflict(&quot;#video_fit&quot;).fancybox({
    &#039;padding&#039;                   : 0,
    &#039;autoScale&#039;     	        : false,
    &#039;transitionIn&#039;		: &#039;none&#039;,
    &#039;transitionOut&#039;		: &#039;none&#039;
});

And here is all I did to fix it:

$noConflict(&quot;#video_fit&quot;).fancybox({
    &#039;padding&#039;                    : 0,
    &#039;autoScale&#039;     	        : false,
    &#039;transitionIn&#039;		: &#039;none&#039;,
    &#039;transitionOut&#039;		: &#039;none&#039;,
    &#039;type&#039;				: &#039;iframe&#039;
});

That&#039;s right... I was missing the line: 
&#039;type&#039; : &#039;iframe&#039;

Hope this helps for someone else in the future pulling their hair out about yet another IE inconsistency, (though in IE&#039;s defense, it&#039;s a totally valid error).</description>
		<content:encoded><![CDATA[<p>&#8221; #30  mark on 01.13.09 at 1:04 am</p>
<p>    For mine, the system is working for 2-3 times and then it is throwing this error of object doesn’e support…..</p>
<p>    Means when i start the applicaiton works fine but after a certain 2-3 times clicking it throws this error.<br />
    Please help me out in this<br />
&#8221;</p>
<p>I&#8217;ve been working on this same exact error off and on now for the last month (had to dedicate time to more important stuff), and I seem to have just solved it.  </p>
<p>It was happening specifically and only to an iframe element I have pointing to an .htm page with a Flowplayer video, while a secondary fancybox element on the same page that was consequently NOT calling an iframe was consistently working just fine.</p>
<p>So, like everyone else here has been saying, it was a simple error and totally my own damn fault&#8230;</p>
<p>Here was the offending code:</p>
<p>$noConflict(&#8221;#video_fit&#8221;).fancybox({<br />
    &#8216;padding&#8217;                   : 0,<br />
    &#8216;autoScale&#8217;     	        : false,<br />
    &#8216;transitionIn&#8217;		: &#8216;none&#8217;,<br />
    &#8216;transitionOut&#8217;		: &#8216;none&#8217;<br />
});</p>
<p>And here is all I did to fix it:</p>
<p>$noConflict(&#8221;#video_fit&#8221;).fancybox({<br />
    &#8216;padding&#8217;                    : 0,<br />
    &#8216;autoScale&#8217;     	        : false,<br />
    &#8216;transitionIn&#8217;		: &#8216;none&#8217;,<br />
    &#8216;transitionOut&#8217;		: &#8216;none&#8217;,<br />
    &#8216;type&#8217;				: &#8216;iframe&#8217;<br />
});</p>
<p>That&#8217;s right&#8230; I was missing the line:<br />
&#8216;type&#8217; : &#8216;iframe&#8217;</p>
<p>Hope this helps for someone else in the future pulling their hair out about yet another IE inconsistency, (though in IE&#8217;s defense, it&#8217;s a totally valid error).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christy</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-8598</link>
		<dc:creator>Christy</dc:creator>
		<pubDate>Thu, 25 Mar 2010 15:34:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-8598</guid>
		<description>Spelling and uppercase/lowercase are also quick things to check when getting this error. &quot;getElementByID&quot; is wrong, &quot;getElementById&quot; is right.</description>
		<content:encoded><![CDATA[<p>Spelling and uppercase/lowercase are also quick things to check when getting this error. &#8220;getElementByID&#8221; is wrong, &#8220;getElementById&#8221; is right.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ir</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-8413</link>
		<dc:creator>ir</dc:creator>
		<pubDate>Mon, 15 Mar 2010 14:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-8413</guid>
		<description>Thanks. This article really helped me save a lot of time.</description>
		<content:encoded><![CDATA[<p>Thanks. This article really helped me save a lot of time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adam</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-8125</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Mon, 01 Mar 2010 05:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-8125</guid>
		<description>what i found to be happening was i wasn&#039;t declaring local variables with &quot;var&quot;, bad habit...i know. However, once I did added &quot;var&quot; to the local variable declarations, IE ran fine.</description>
		<content:encoded><![CDATA[<p>what i found to be happening was i wasn&#8217;t declaring local variables with &#8220;var&#8221;, bad habit&#8230;i know. However, once I did added &#8220;var&#8221; to the local variable declarations, IE ran fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enkay</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-7919</link>
		<dc:creator>Enkay</dc:creator>
		<pubDate>Fri, 19 Feb 2010 15:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-7919</guid>
		<description>Thanks for the article. It helped me in identifying where the issue was @ a crucial time :)</description>
		<content:encoded><![CDATA[<p>Thanks for the article. It helped me in identifying where the issue was @ a crucial time <img src='http://www.javascriptjunkie.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cristina</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-7646</link>
		<dc:creator>Cristina</dc:creator>
		<pubDate>Mon, 08 Feb 2010 10:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-7646</guid>
		<description>I had this problem because when I wrote a js function, I had something like: function nameF(String param){...}. It should be function nameF(param){...}</description>
		<content:encoded><![CDATA[<p>I had this problem because when I wrote a js function, I had something like: function nameF(String param){&#8230;}. It should be function nameF(param){&#8230;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahendra Tyagi</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-7511</link>
		<dc:creator>Mahendra Tyagi</dc:creator>
		<pubDate>Wed, 03 Feb 2010 06:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-7511</guid>
		<description>Object doesn’t support this property or method”. will u tell me the way to come out from this problem</description>
		<content:encoded><![CDATA[<p>Object doesn’t support this property or method”. will u tell me the way to come out from this problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahendra Tyagi</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-7510</link>
		<dc:creator>Mahendra Tyagi</dc:creator>
		<pubDate>Wed, 03 Feb 2010 06:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-7510</guid>
		<description>i m having the problem Object doesn’t support this property or method”.in javascript  file.
please help me out</description>
		<content:encoded><![CDATA[<p>i m having the problem Object doesn’t support this property or method”.in javascript  file.<br />
please help me out</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinitha</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-4816</link>
		<dc:creator>Vinitha</dc:creator>
		<pubDate>Thu, 08 Oct 2009 11:04:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-4816</guid>
		<description>Thanks a lot...I wasted my whole day trying to solve this error..Thank you very much..</description>
		<content:encoded><![CDATA[<p>Thanks a lot&#8230;I wasted my whole day trying to solve this error..Thank you very much..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Leto</title>
		<link>http://www.javascriptjunkie.com/?p=12&#038;cpage=2#comment-4799</link>
		<dc:creator>Steve Leto</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.javascriptjunkie.com/?p=12#comment-4799</guid>
		<description>Hello all - I am struggling with the same error. This program did work and then all the sudden it stopped working when I tried to use it on a different computer - same OS.  Does anyone have any insight?

Dim fs, f, objFolder, objSubFolder, objFile, strLine, strLine2

Const ForReading = 1

&#039;*** Format the date
strYr  = Year(date)
strMth = Month(date)
strDay = Day(date)

if len(strYr) &lt; 4 then
	strYr = &quot;20&quot; &amp; Year(date)
end if

if len(strMth) &lt; 2 then
	strMth = &quot;0&quot; &amp; Month(date)
end if

if len(strDay) &lt; 2 then
	strDay = &quot;0&quot; &amp; Day(date)
end if


dtDate = strYr &amp; &quot;-&quot; &amp; strMth &amp; &quot;-&quot; &amp; strDay

&#039;*** Open two files - the original file to read from and the new file to write to

&#039; ERRORS ON THE BELOW STMT
Set objFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)

Set objFolder = objFSO.GetFolder(&quot;C:\Documents and Settings\User\My Documents\MWM\MWM Demo Startup\orders&quot;)</description>
		<content:encoded><![CDATA[<p>Hello all &#8211; I am struggling with the same error. This program did work and then all the sudden it stopped working when I tried to use it on a different computer &#8211; same OS.  Does anyone have any insight?</p>
<p>Dim fs, f, objFolder, objSubFolder, objFile, strLine, strLine2</p>
<p>Const ForReading = 1</p>
<p>&#8216;*** Format the date<br />
strYr  = Year(date)<br />
strMth = Month(date)<br />
strDay = Day(date)</p>
<p>if len(strYr) &lt; 4 then<br />
	strYr = &#8220;20&#8243; &amp; Year(date)<br />
end if</p>
<p>if len(strMth) &lt; 2 then<br />
	strMth = &#8220;0&#8243; &amp; Month(date)<br />
end if</p>
<p>if len(strDay) &lt; 2 then<br />
	strDay = &#8220;0&#8243; &amp; Day(date)<br />
end if</p>
<p>dtDate = strYr &amp; &#8220;-&#8221; &amp; strMth &amp; &#8220;-&#8221; &amp; strDay</p>
<p>&#8216;*** Open two files &#8211; the original file to read from and the new file to write to</p>
<p>&#8216; ERRORS ON THE BELOW STMT<br />
Set objFSO = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)</p>
<p>Set objFolder = objFSO.GetFolder(&#8221;C:\Documents and Settings\User\My Documents\MWM\MWM Demo Startup\orders&#8221;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
