<?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: Convert Images to Grayscale</title>
	<atom:link href="http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html</link>
	<description>A Whole Lot of AJAX!</description>
	<lastBuildDate>Tue, 10 Jan 2012 16:11:09 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ricette cocktail</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-3177</link>
		<dc:creator>ricette cocktail</dc:creator>
		<pubDate>Wed, 16 Nov 2011 13:52:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-3177</guid>
		<description>Re my earlier comment, the issue for me was that I was using $(document).ready(), when i should have been using $(window).load(). That way, it waits until all the images are loaded in the browser before executing the effect.</description>
		<content:encoded><![CDATA[<p>Re my earlier comment, the issue for me was that I was using $(document).ready(), when i should have been using $(window).load(). That way, it waits until all the images are loaded in the browser before executing the effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: solsTiCe</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-2871</link>
		<dc:creator>solsTiCe</dc:creator>
		<pubDate>Fri, 21 Oct 2011 17:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-2871</guid>
		<description>great !
I had hard time to use your code to make grey out overlay of image as I wanted. To create a hover effect with the saturated image. It works now.

http://sorobanexam.org/about.html

I just found that someone created a plugin from your code http://plugins.jquery.com/project/desaturate</description>
		<content:encoded><![CDATA[<p>great !<br />
I had hard time to use your code to make grey out overlay of image as I wanted. To create a hover effect with the saturated image. It works now.</p>
<p><a href="http://sorobanexam.org/about.html" rel="nofollow">http://sorobanexam.org/about.html</a></p>
<p>I just found that someone created a plugin from your code <a href="http://plugins.jquery.com/project/desaturate" rel="nofollow">http://plugins.jquery.com/project/desaturate</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeetendra kumar singh</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-2610</link>
		<dc:creator>jeetendra kumar singh</dc:creator>
		<pubDate>Sat, 08 Oct 2011 11:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-2610</guid>
		<description>nice code
but it is not giving expected result for another colors
like 
i want to change the image color as user select
rgb</description>
		<content:encoded><![CDATA[<p>nice code<br />
but it is not giving expected result for another colors<br />
like<br />
i want to change the image color as user select<br />
rgb</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-2357</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 19 Sep 2011 20:43:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-2357</guid>
		<description>I get an error: INDEX_SIZE_ERR: Dom Exception 1.


$(document).ready(function() {
	var imgObj = document.getElementById(&#039;image&#039;);
	desaturate(imgObj);
});</description>
		<content:encoded><![CDATA[<p>I get an error: INDEX_SIZE_ERR: Dom Exception 1.</p>
<p>$(document).ready(function() {<br />
	var imgObj = document.getElementById(&#8217;image&#8217;);<br />
	desaturate(imgObj);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mina</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-1874</link>
		<dc:creator>mina</dc:creator>
		<pubDate>Sun, 14 Aug 2011 23:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-1874</guid>
		<description>not working with Firefox put work fine with opera
thanks for this great tutorial</description>
		<content:encoded><![CDATA[<p>not working with Firefox put work fine with opera<br />
thanks for this great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Reisner</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-1610</link>
		<dc:creator>Josh Reisner</dc:creator>
		<pubDate>Mon, 04 Jul 2011 18:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-1610</guid>
		<description>Re my earlier comment, the issue for me was that I was using $(document).ready(), when i should have been using $(window).load(). That way, it waits until all the images are loaded in the browser before executing the effect.</description>
		<content:encoded><![CDATA[<p>Re my earlier comment, the issue for me was that I was using $(document).ready(), when i should have been using $(window).load(). That way, it waits until all the images are loaded in the browser before executing the effect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nachomaans</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-1170</link>
		<dc:creator>nachomaans</dc:creator>
		<pubDate>Tue, 03 May 2011 08:11:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-1170</guid>
		<description>Thank you for the IE filter tip, which was added as a fallback for IE on this page: http://kiridara.com/
Other browsers use a smooth transition.</description>
		<content:encoded><![CDATA[<p>Thank you for the IE filter tip, which was added as a fallback for IE on this page: <a href="http://kiridara.com/" rel="nofollow">http://kiridara.com/</a><br />
Other browsers use a smooth transition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh Reisner</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-1121</link>
		<dc:creator>Josh Reisner</dc:creator>
		<pubDate>Tue, 26 Apr 2011 05:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-1121</guid>
		<description>This is a great script!  I&#039;m having an issue with WebKit though, for some reason it won&#039;t load a bunch at the same time.  See the following URL.  Firefox handles it no problem, Safari and Chrome show blank images.  But when you trigger mouse over then out, the grayscale effect works.  

http://kate.joshreisner.com/
http://kate.joshreisner.com/scripts/global.js

Any advice to get them all to load on ready?  Thanks.</description>
		<content:encoded><![CDATA[<p>This is a great script!  I&#8217;m having an issue with WebKit though, for some reason it won&#8217;t load a bunch at the same time.  See the following URL.  Firefox handles it no problem, Safari and Chrome show blank images.  But when you trigger mouse over then out, the grayscale effect works.  </p>
<p><a href="http://kate.joshreisner.com/" rel="nofollow">http://kate.joshreisner.com/</a><br />
<a href="http://kate.joshreisner.com/scripts/global.js" rel="nofollow">http://kate.joshreisner.com/scripts/global.js</a></p>
<p>Any advice to get them all to load on ready?  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jdsans</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-1082</link>
		<dc:creator>Jdsans</dc:creator>
		<pubDate>Sun, 17 Apr 2011 09:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-1082</guid>
		<description>I used absolute url only,not relative url.
But in the demo you have used relative url&#039;s for images</description>
		<content:encoded><![CDATA[<p>I used absolute url only,not relative url.<br />
But in the demo you have used relative url&#8217;s for images</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajaxBlender.com</title>
		<link>http://www.ajaxblender.com/howto-convert-image-to-grayscale-using-javascript.html/comment-page-1#comment-972</link>
		<dc:creator>ajaxBlender.com</dc:creator>
		<pubDate>Fri, 25 Feb 2011 13:01:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ajaxblender.com/?p=1113#comment-972</guid>
		<description>Hello Jdsans
You should put an absolute URL. Relative URL will not work.</description>
		<content:encoded><![CDATA[<p>Hello Jdsans<br />
You should put an absolute URL. Relative URL will not work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

