<?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: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>Tue, 19 May 2009 20:43:17 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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(&#8217;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>
	<item>
		<title>Comment on Reading binary files using Ajax by nagoon97</title>
		<link>http://nagoon97.wordpress.com/2008/04/06/reading-binary-files-using-ajax/#comment-49</link>
		<dc:creator>nagoon97</dc:creator>
		<pubDate>Tue, 28 Oct 2008 22:43:33 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=19#comment-49</guid>
		<description>@Jason:
The reason why I had two body tags is... I was tired and I didn&#039;t know I had two body tags. lol
I just got rid of one of the body tags and it still works alright.
Thx for pointing that out. :-)</description>
		<content:encoded><![CDATA[<p>@Jason:<br />
The reason why I had two body tags is&#8230; I was tired and I didn&#8217;t know I had two body tags. lol<br />
I just got rid of one of the body tags and it still works alright.<br />
Thx for pointing that out. <img src='http://s.wordpress.com/wp-includes/images/smilies/face-smile.png' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading binary files using Ajax by nagoon97</title>
		<link>http://nagoon97.wordpress.com/2008/04/06/reading-binary-files-using-ajax/#comment-48</link>
		<dc:creator>nagoon97</dc:creator>
		<pubDate>Tue, 28 Oct 2008 22:39:50 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=19#comment-48</guid>
		<description>@evan:
The binary contents are stored in &quot;fileContents&quot; variable.
But you are not allowed to directly access it in the code and it won&#039;t be very useful anyways because it contains different type of information depending on the browser you are using. (a binary string for FF and an array for IE as IE can&#039;t handle binary strings)
However, if you really wish to get the value, you may create a public function that returns the value or make the vairable public.</description>
		<content:encoded><![CDATA[<p>@evan:<br />
The binary contents are stored in &#8220;fileContents&#8221; variable.<br />
But you are not allowed to directly access it in the code and it won&#8217;t be very useful anyways because it contains different type of information depending on the browser you are using. (a binary string for FF and an array for IE as IE can&#8217;t handle binary strings)<br />
However, if you really wish to get the value, you may create a public function that returns the value or make the vairable public.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading binary files using Ajax by Jason Huang</title>
		<link>http://nagoon97.wordpress.com/2008/04/06/reading-binary-files-using-ajax/#comment-47</link>
		<dc:creator>Jason Huang</dc:creator>
		<pubDate>Mon, 27 Oct 2008 15:16:35 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=19#comment-47</guid>
		<description>Hi there,

I checked your src code. So you removed the following code:
netscape.security.PrivilegeManager.enablePrivilege(&quot;UniversalBrowserRead&quot;);

I tried it then and it does not work for me in FF. Then I went to your demo and it was excellent. So I viewed your html source code. I found there&#039;s two pairs of body tag and the actual script is located in between.  Is there any reason for that?

Thanks and have a great day,

Jason Huang</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I checked your src code. So you removed the following code:<br />
netscape.security.PrivilegeManager.enablePrivilege(&#8221;UniversalBrowserRead&#8221;);</p>
<p>I tried it then and it does not work for me in FF. Then I went to your demo and it was excellent. So I viewed your html source code. I found there&#8217;s two pairs of body tag and the actual script is located in between.  Is there any reason for that?</p>
<p>Thanks and have a great day,</p>
<p>Jason Huang</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Reading binary files using Ajax by evan</title>
		<link>http://nagoon97.wordpress.com/2008/04/06/reading-binary-files-using-ajax/#comment-46</link>
		<dc:creator>evan</dc:creator>
		<pubDate>Thu, 04 Sep 2008 21:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=19#comment-46</guid>
		<description>All I want to do. Is read an image file (or any binary file) into a variable. Just like the code you based this on can do. How do I do that?</description>
		<content:encoded><![CDATA[<p>All I want to do. Is read an image file (or any binary file) into a variable. Just like the code you based this on can do. How do I do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ajax mosaic builder by Top Politic News &#187; Mosaic Image Builder With Ajax</title>
		<link>http://nagoon97.wordpress.com/2008/04/09/ajax-mosaic-builder/#comment-44</link>
		<dc:creator>Top Politic News &#187; Mosaic Image Builder With Ajax</dc:creator>
		<pubDate>Fri, 13 Jun 2008 12:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://nagoon97.wordpress.com/?p=20#comment-44</guid>
		<description>[...] read more &#124; digg story [...]</description>
		<content:encoded><![CDATA[<p>[...] read more | digg story [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
