<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for nagoon97's Weblog</title>
	<atom:link href="http://nagoon97.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://nagoon97.wordpress.com</link>
	<description>you can actually do alot with javascript!</description>
	<lastBuildDate>Wed, 25 Nov 2009 13:45:18 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Reading binary files using Ajax by alex s</title>
		<link>http://nagoon97.wordpress.com/2008/04/06/reading-binary-files-using-ajax/#comment-66</link>
		<dc:creator>alex s</dc:creator>
		<pubDate>Wed, 25 Nov 2009 13:45:18 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=19#comment-66</guid>
		<description>A very cool and useful script!</description>
		<content:encoded><![CDATA[<p>A very cool and useful script!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by ajax好玩的特效30则 &#171; @恨完美主义&#124; ISO1.com &#60;&#8211; 优秀域名转让</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-65</link>
		<dc:creator>ajax好玩的特效30则 &#171; @恨完美主义&#124; ISO1.com &#60;&#8211; 优秀域名转让</dc:creator>
		<pubDate>Thu, 05 Nov 2009 21:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-65</guid>
		<description>[...] Ajax mosaic builder- [...]</description>
		<content:encoded><![CDATA[<p>[...] Ajax mosaic builder- [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between designMode and contentEditable by dave</title>
		<link>http://nagoon97.wordpress.com/2008/04/20/differences-between-designmode-and-contenteditable/#comment-64</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Fri, 23 Oct 2009 06:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=23#comment-64</guid>
		<description>Thanks for the very useful info, exactly what I needed when I needed it.</description>
		<content:encoded><![CDATA[<p>Thanks for the very useful info, exactly what I needed when I needed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by olağan üstü Ajax/javascript teknikleri &#124; nettuts</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-63</link>
		<dc:creator>olağan üstü Ajax/javascript teknikleri &#124; nettuts</dc:creator>
		<pubDate>Mon, 14 Sep 2009 22:48:43 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-63</guid>
		<description>[...] 9) Ajax mosaic builder- Bir resmi mozaikleştiren güzel bir uygulama [...]</description>
		<content:encoded><![CDATA[<p>[...] 9) Ajax mosaic builder- Bir resmi mozaikleştiren güzel bir uygulama [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by Exceptional Ajax/javascript Techniques (Recently Created) &#124; Webmaster Zone - Cyooh.com</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-61</link>
		<dc:creator>Exceptional Ajax/javascript Techniques (Recently Created) &#124; Webmaster Zone - Cyooh.com</dc:creator>
		<pubDate>Thu, 23 Jul 2009 00:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-61</guid>
		<description>[...] Ajax mosaic builder- The function will load multiple images as a color pallet using BinFileReader and then arranged [...]</description>
		<content:encoded><![CDATA[<p>[...] Ajax mosaic builder- The function will load multiple images as a color pallet using BinFileReader and then arranged [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Differences between designMode and contentEditable by Howard</title>
		<link>http://nagoon97.wordpress.com/2008/04/20/differences-between-designmode-and-contenteditable/#comment-59</link>
		<dc:creator>Howard</dc:creator>
		<pubDate>Tue, 19 May 2009 20:43:17 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=23#comment-59</guid>
		<description>One major difference I found as I tried to set body style for the iframe: if you use contentEditable, body node is exposed to you. While if you use designMode, IE would not present it.

The following code works to change the default font of the iframe:

editor = document.getElementById(&#039;ifrm&#039;).contentWindow;
editor.document.body.contentEditable = true;
editor.document.body.style.fontFamily = &#039;Courier New&#039;;

But if you change the 2nd line to:

editor.document.designMode = &quot;on&quot;;

IE will complain the body node not found.</description>
		<content:encoded><![CDATA[<p>One major difference I found as I tried to set body style for the iframe: if you use contentEditable, body node is exposed to you. While if you use designMode, IE would not present it.</p>
<p>The following code works to change the default font of the iframe:</p>
<p>editor = document.getElementById(&#8216;ifrm&#8217;).contentWindow;<br />
editor.document.body.contentEditable = true;<br />
editor.document.body.style.fontFamily = &#8216;Courier New&#8217;;</p>
<p>But if you change the 2nd line to:</p>
<p>editor.document.designMode = &#8220;on&#8221;;</p>
<p>IE will complain the body node not found.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by 30个精挑细致的Ajax和Javascript 技巧 &#124; forcto.com</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-55</link>
		<dc:creator>30个精挑细致的Ajax和Javascript 技巧 &#124; forcto.com</dc:creator>
		<pubDate>Tue, 31 Mar 2009 16:21:39 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-55</guid>
		<description>[...] the Demos here.  9) Ajax mosaic builder- [...]</description>
		<content:encoded><![CDATA[<p>[...] the Demos here.  9) Ajax mosaic builder- [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by ajax特效 &#124; forcto.com</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-54</link>
		<dc:creator>ajax特效 &#124; forcto.com</dc:creator>
		<pubDate>Wed, 25 Mar 2009 15:41:41 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-54</guid>
		<description>[...] the Demos here.  9) Ajax mosaic builder- [...]</description>
		<content:encoded><![CDATA[<p>[...] the Demos here.  9) Ajax mosaic builder- [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by dece24</title>
		<link>http://nagoon97.wordpress.com/about/#comment-51</link>
		<dc:creator>dece24</dc:creator>
		<pubDate>Wed, 14 Jan 2009 13:48:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-51</guid>
		<description>건표님 영문 블로그 너무 부럽습니다! 번역하신 책 나온것 축하드려요!</description>
		<content:encoded><![CDATA[<p>건표님 영문 블로그 너무 부럽습니다! 번역하신 책 나온것 축하드려요!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by Ajax/javascript Techniques &#124; Design it</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-50</link>
		<dc:creator>Ajax/javascript Techniques &#124; Design it</dc:creator>
		<pubDate>Wed, 17 Dec 2008 04:24:33 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-50</guid>
		<description>[...] Ajax mosaic builder- The function will load multiple images as a color pallet using BinFileReader and then arranged [...]</description>
		<content:encoded><![CDATA[<p>[...] Ajax mosaic builder- The function will load multiple images as a color pallet using BinFileReader and then arranged [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
