<?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: jQuery fadeIn() &amp; fadeOut(): Problems in Internet Explorer</title>
	<atom:link href="http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/</link>
	<description>Ramblings on web design, front-end development and user interaction</description>
	<lastBuildDate>Fri, 05 Mar 2010 22:14:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kevinlearynet</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-585</link>
		<dc:creator>kevinlearynet</dc:creator>
		<pubDate>Wed, 20 Jan 2010 18:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-585</guid>
		<description>Thanks for this bill, I&#039;ve added it to the post and placed the code in a source viewer. </description>
		<content:encoded><![CDATA[<p>Thanks for this bill, I&#39;ve added it to the post and placed the code in a source viewer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-584</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Wed, 20 Jan 2010 07:24:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-584</guid>
		<description>I can&#039;t recall where I got this from but if you google it you&#039;ll find it. This is how to fix the problem (not tested in jquery 1.4).  
 
Use this function. Change your &#039;fadeOut&#039; to &#039;customFadeOut&#039;.  
 
(function($) { 
$.fn.customFadeIn = function(speed, callback) { 
$(this).fadeIn(speed, function() { 
if(!$.support.opacity) 
$(this).get(0).style.removeAttribute(&#039;filter&#039;); 
if(callback != undefined) 
callback(); 
}); 
}; 
$.fn.customFadeOut = function(speed, callback) { 
$(this).fadeOut(speed, function() { 
if(!$.support.opacity) 
$(this).get(0).style.removeAttribute(&#039;filter&#039;); 
if(callback != undefined) 
callback(); 
}); 
}; 
$.fn.customFadeTo = function(speed,to,callback) { 
return this.animate({opacity: to}, speed, function() { 
if (to == 1 &amp;&amp; jQuery.browser.msie) 
this.style.removeAttribute(&#039;filter&#039;); 
if (jQuery.isFunction(callback)) 
callback(); 
}); 
}; 
})(jQuery); 
 </description>
		<content:encoded><![CDATA[<p>I can&#039;t recall where I got this from but if you google it you&#039;ll find it. This is how to fix the problem (not tested in jquery 1.4).  </p>
<p>Use this function. Change your &#039;fadeOut&#039; to &#039;customFadeOut&#039;.  </p>
<p>(function($) {<br />
$.fn.customFadeIn = function(speed, callback) {<br />
$(this).fadeIn(speed, function() {<br />
if(!$.support.opacity)<br />
$(this).get(0).style.removeAttribute(&#039;filter&#039;);<br />
if(callback != undefined)<br />
callback();<br />
});<br />
};<br />
$.fn.customFadeOut = function(speed, callback) {<br />
$(this).fadeOut(speed, function() {<br />
if(!$.support.opacity)<br />
$(this).get(0).style.removeAttribute(&#039;filter&#039;);<br />
if(callback != undefined)<br />
callback();<br />
});<br />
};<br />
$.fn.customFadeTo = function(speed,to,callback) {<br />
return this.animate({opacity: to}, speed, function() {<br />
if (to == 1 &amp;&amp; jQuery.browser.msie)<br />
this.style.removeAttribute(&#039;filter&#039;);<br />
if (jQuery.isFunction(callback))<br />
callback();<br />
});<br />
};<br />
})(jQuery);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevinlearynet</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-583</link>
		<dc:creator>kevinlearynet</dc:creator>
		<pubDate>Tue, 19 Jan 2010 16:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-583</guid>
		<description>Can&#039;t say I know a fix for that fresh, even a tough one. You may want to consider digging around stackoverflow.com for some similar scenarios: 
 
&lt;a href=&quot;http://stackoverflow.com/search?q=jquery+fadeIn+IE&quot;&gt;Stackoverflow.com search for &quot;jQuery fadeIn IE&quot;&lt;/a&gt; 
 
If you can&#039;t find anything I&#039;d post a new entry. Stackoverflow has been incredibly helpful for me, especially with advanced jQuery scenarios like this. 
 
Best of luck and thanks for posting! </description>
		<content:encoded><![CDATA[<p>Can&#039;t say I know a fix for that fresh, even a tough one. You may want to consider digging around stackoverflow.com for some similar scenarios: </p>
<p>&lt;a href=&quot;http://stackoverflow.com/search?q=jquery+fadeIn+IE&quot;&gt;Stackoverflow.com search for &quot;jQuery fadeIn IE&quot; </p>
<p>If you can&#039;t find anything I&#039;d post a new entry. Stackoverflow has been incredibly helpful for me, especially with advanced jQuery scenarios like this. </p>
<p>Best of luck and thanks for posting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fresh</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-578</link>
		<dc:creator>fresh</dc:creator>
		<pubDate>Sat, 16 Jan 2010 02:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-578</guid>
		<description>Kevin, thanks for sharing! But if I can&#039;t set the bg color, because I have a complex background underneath on the body element? If I set the bg color, it will look really ugly on non-flat-color bg. You you know any other solution? Even a hard one? :-) </description>
		<content:encoded><![CDATA[<p>Kevin, thanks for sharing! But if I can&#039;t set the bg color, because I have a complex background underneath on the body element? If I set the bg color, it will look really ugly on non-flat-color bg. You you know any other solution? Even a hard one? :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stefan</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-570</link>
		<dc:creator>stefan</dc:creator>
		<pubDate>Mon, 04 Jan 2010 11:41:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-570</guid>
		<description>thanks for this! It was giving me a headache for a fair few hours.. 
 
 
Cheeeeeeeeeeeers! </description>
		<content:encoded><![CDATA[<p>thanks for this! It was giving me a headache for a fair few hours.. </p>
<p>Cheeeeeeeeeeeers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevinlearynet</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-533</link>
		<dc:creator>kevinlearynet</dc:creator>
		<pubDate>Mon, 07 Dec 2009 23:07:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-533</guid>
		<description>Hey Dave, 
 
That&#039;s too bad -- and I&#039;ve heard such great things about 7. I have a copy of XP and the issue seems to be fixed for both examples on IE8 (even the bad). Until I get a copy of Windows 7 loaded up on VMware I don&#039;t know how to help on this one. In the mean time if you or anyone else find&#039;s the cause/solution please let everyone know. </description>
		<content:encoded><![CDATA[<p>Hey Dave, </p>
<p>That&#039;s too bad &#8212; and I&#039;ve heard such great things about 7. I have a copy of XP and the issue seems to be fixed for both examples on IE8 (even the bad). Until I get a copy of Windows 7 loaded up on VMware I don&#039;t know how to help on this one. In the mean time if you or anyone else find&#039;s the cause/solution please let everyone know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: @dangerdave</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-532</link>
		<dc:creator>@dangerdave</dc:creator>
		<pubDate>Mon, 07 Dec 2009 22:20:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-532</guid>
		<description>This seemed promising, but I tried your demo in IE8 (on Win7) and the &quot;pretty&quot; fade in looks just as broken and pixellated as the not-pretty fade-in. Alas. </description>
		<content:encoded><![CDATA[<p>This seemed promising, but I tried your demo in IE8 (on Win7) and the &quot;pretty&quot; fade in looks just as broken and pixellated as the not-pretty fade-in. Alas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre Oliveira</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-469</link>
		<dc:creator>Alexandre Oliveira</dc:creator>
		<pubDate>Thu, 12 Nov 2009 19:56:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-469</guid>
		<description>Ohhh my! I can&#039;t believe this... 
 
IE&#039;s always surprising me. </description>
		<content:encoded><![CDATA[<p>Ohhh my! I can&#039;t believe this&#8230; </p>
<p>IE&#039;s always surprising me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-398</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 11 Oct 2009 13:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-398</guid>
		<description>Saved me a lot of time on this one - thanks! </description>
		<content:encoded><![CDATA[<p>Saved me a lot of time on this one &#8211; thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jQuery fadeIn() &#38; fadeOut() - Bug no Internet Explorer &#187; Pinceladas da Web - Reflex&#245;es sobre XHTML, CSS, PHP e WebStandards</title>
		<link>http://www.kevinleary.net/jquery-fadein-fadeout-problems-in-internet-explorer/comment-page-1/#comment-34</link>
		<dc:creator>jQuery fadeIn() &#38; fadeOut() - Bug no Internet Explorer &#187; Pinceladas da Web - Reflex&#245;es sobre XHTML, CSS, PHP e WebStandards</dc:creator>
		<pubDate>Tue, 04 Nov 2008 09:01:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.kevinleary.net/blog/?p=118#comment-34</guid>
		<description>[...] mas acabei encontrado uma solu&#231;&#227;o muito interessante no site de Kevin Leary que consiste simplesmente em adicionar uma cor de fundo ao elemento que ser&#225; aplicado o [...]</description>
		<content:encoded><![CDATA[<p>[...] mas acabei encontrado uma solu&ccedil;&atilde;o muito interessante no site de Kevin Leary que consiste simplesmente em adicionar uma cor de fundo ao elemento que ser&aacute; aplicado o [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
