<?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 for eggBlog</title>
	<atom:link href="http://www.eggchops.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eggchops.com</link>
	<description>The noble ramblings of an eggChop</description>
	<lastBuildDate>Wed, 14 Jul 2010 09:58:34 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.3</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on jQuery scroll to top animation (scrollTo plugin) by Ashish</title>
		<link>http://www.eggchops.com/web-stuff/jquery/jquery-scroll-to-top-animation-scrollto-plugin/comment-page-1/#comment-26394</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Wed, 14 Jul 2010 09:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=199#comment-26394</guid>
		<description>Wao! nice plugin. used it many times. Thanks for posting.</description>
		<content:encoded><![CDATA[<p>Wao! nice plugin. used it many times. Thanks for posting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Free Emoji icons for iPhone using Spell Number app by Tday</title>
		<link>http://www.eggchops.com/iphone/free-emoji-icons-for-iphone-using-spell-number-app/comment-page-1/#comment-26375</link>
		<dc:creator>Tday</dc:creator>
		<pubDate>Mon, 05 Jul 2010 14:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=266#comment-26375</guid>
		<description>Followed the above instructions and have the globe and Japanese but the problem is I do NOT get the above picture displayed with these emoji.

Please explain I don&#039;t see what I am missing in the instructions! 

Truly appreciate the assistance.

Mrs. Day</description>
		<content:encoded><![CDATA[<p>Followed the above instructions and have the globe and Japanese but the problem is I do NOT get the above picture displayed with these emoji.</p>
<p>Please explain I don&#8217;t see what I am missing in the instructions! </p>
<p>Truly appreciate the assistance.</p>
<p>Mrs. Day</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delete cookies&#8230; by wanluqman</title>
		<link>http://www.eggchops.com/random/delete-cookies/comment-page-1/#comment-26241</link>
		<dc:creator>wanluqman</dc:creator>
		<pubDate>Fri, 02 Jul 2010 01:36:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=306#comment-26241</guid>
		<description>recommended after e-transaction? , do not why . Stumble this blog via common keyword eggblog .. nice page</description>
		<content:encoded><![CDATA[<p>recommended after e-transaction? , do not why . Stumble this blog via common keyword eggblog .. nice page</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Konami Code &#8211; Sites that use the Konami Code by James Chapman</title>
		<link>http://www.eggchops.com/web-stuff/websites/konami-code-sites-that-use-the-konami-code/comment-page-1/#comment-25181</link>
		<dc:creator>James Chapman</dc:creator>
		<pubDate>Fri, 25 Jun 2010 10:49:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=309#comment-25181</guid>
		<description>Our site now incorporates the cheat code :)</description>
		<content:encoded><![CDATA[<p>Our site now incorporates the cheat code <img src='http://www.eggchops.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dreamweaver &#8211; list of shortcuts by krushna chandra swain</title>
		<link>http://www.eggchops.com/random/dreamweaver-list-of-shortcuts/comment-page-1/#comment-4878</link>
		<dc:creator>krushna chandra swain</dc:creator>
		<pubDate>Sat, 20 Feb 2010 07:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=270#comment-4878</guid>
		<description>Really it very useful . What is the shortcut  for commenting  tags ??</description>
		<content:encoded><![CDATA[<p>Really it very useful . What is the shortcut  for commenting  tags ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery clear focus function by John Robinson</title>
		<link>http://www.eggchops.com/web-stuff/jquery/jquery-clear-focus-function/comment-page-1/#comment-4649</link>
		<dc:creator>John Robinson</dc:creator>
		<pubDate>Sat, 06 Feb 2010 19:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=217#comment-4649</guid>
		<description>One of the great features of jQuery is the ability to chain events. To save on a few bytes of characters the entire script can be condensed to:

$(document).ready(function () {
	$(&quot;.searchinput&quot;).focus(function () {
		if ($(this).val() === $(this).attr(&quot;title&quot;)) {
			$(this).val(&quot;&quot;);
		}
	}).blur(function () {
		if ($(this).val() === &quot;&quot;) {
			$(this).val($(this).attr(&quot;title&quot;));
		}
	});
});</description>
		<content:encoded><![CDATA[<p>One of the great features of jQuery is the ability to chain events. To save on a few bytes of characters the entire script can be condensed to:</p>
<p>$(document).ready(function () {<br />
	$(&#8221;.searchinput&#8221;).focus(function () {<br />
		if ($(this).val() === $(this).attr(&#8221;title&#8221;)) {<br />
			$(this).val(&#8221;");<br />
		}<br />
	}).blur(function () {<br />
		if ($(this).val() === &#8220;&#8221;) {<br />
			$(this).val($(this).attr(&#8221;title&#8221;));<br />
		}<br />
	});<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery scroll to top animation (scrollTo plugin) by naseem</title>
		<link>http://www.eggchops.com/web-stuff/jquery/jquery-scroll-to-top-animation-scrollto-plugin/comment-page-1/#comment-3762</link>
		<dc:creator>naseem</dc:creator>
		<pubDate>Fri, 11 Dec 2009 18:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=199#comment-3762</guid>
		<description>Thanks usefull post!  , but need to inform user that while coping the code the outcome is formatted uncorrectly, so user has to manually change some character like &quot; and ` in the pasted code... spent some times before realizing it.</description>
		<content:encoded><![CDATA[<p>Thanks usefull post!  , but need to inform user that while coping the code the outcome is formatted uncorrectly, so user has to manually change some character like &#8221; and ` in the pasted code&#8230; spent some times before realizing it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery clear focus function by Sam</title>
		<link>http://www.eggchops.com/web-stuff/jquery/jquery-clear-focus-function/comment-page-1/#comment-2838</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Wed, 16 Sep 2009 13:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=217#comment-2838</guid>
		<description>Thanks, helped me a ton :).</description>
		<content:encoded><![CDATA[<p>Thanks, helped me a ton <img src='http://www.eggchops.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Adobe Flex &#8211; A brief introduction to Rich Internet Applications by Rahul.Kumar</title>
		<link>http://www.eggchops.com/web-stuff/adobe-flex/adobe-flex-a-brief-introduction-to-rich-internet-applications/comment-page-1/#comment-2584</link>
		<dc:creator>Rahul.Kumar</dc:creator>
		<pubDate>Sat, 29 Aug 2009 14:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=24#comment-2584</guid>
		<description>Can anyone tell me where Adobe Flex and RIA are used in IT industry apart from making websites, games and portals. Can it be used for Financial services, managing ERPs etc?

Thanks,
RK</description>
		<content:encoded><![CDATA[<p>Can anyone tell me where Adobe Flex and RIA are used in IT industry apart from making websites, games and portals. Can it be used for Financial services, managing ERPs etc?</p>
<p>Thanks,<br />
RK</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jGrowl &#8211; jQuery alerts and message box by eggChops</title>
		<link>http://www.eggchops.com/web-stuff/jquery/jgrowl-jquery-alerts-and-message-box/comment-page-1/#comment-2406</link>
		<dc:creator>eggChops</dc:creator>
		<pubDate>Mon, 03 Aug 2009 20:34:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.eggchops.com/?p=251#comment-2406</guid>
		<description>You&#039;re welcome. 
Yes it&#039;s a nice little tool to use. It&#039;s often the great thing about all these jQuery plugins that are out there, they&#039;re usually easy to just plug in and use.
Nick</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome.<br />
Yes it&#8217;s a nice little tool to use. It&#8217;s often the great thing about all these jQuery plugins that are out there, they&#8217;re usually easy to just plug in and use.<br />
Nick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
