<?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: Finding the textarea selection</title>
	<atom:link href="http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/</link>
	<description>Jesse Ruderman on Firefox, security, and more</description>
	<lastBuildDate>Fri, 09 Sep 2011 05:56:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jesse Ruderman</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2316</link>
		<dc:creator>Jesse Ruderman</dc:creator>
		<pubDate>Fri, 19 May 2006 20:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2316</guid>
		<description>Depends on what aspect of download manager you&#039;re hoping to improve.  For the UI, I&#039;m not sure who the best person is, but you could start by talking with beltzner or mconnor or Gavin Sharp.  For backend stuff like making donwloads resumable across sessions, I&#039;d start with Christian Biesinger, since he has made useful comments on the bug about resumable downloads.

Btw, it&#039;s not that hard to find my contact information.</description>
		<content:encoded><![CDATA[<p>Depends on what aspect of download manager you&#8217;re hoping to improve.  For the UI, I&#8217;m not sure who the best person is, but you could start by talking with beltzner or mconnor or Gavin Sharp.  For backend stuff like making donwloads resumable across sessions, I&#8217;d start with Christian Biesinger, since he has made useful comments on the bug about resumable downloads.</p>
<p>Btw, it&#8217;s not that hard to find my contact information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hatim</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2314</link>
		<dc:creator>hatim</dc:creator>
		<pubDate>Fri, 19 May 2006 15:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2314</guid>
		<description>Greetings,

I found your name as one of the mentors for Google Summer of code.

Could you tell me who would be the person most interested in improvements in Mozilla Download Manager? there is no mentor listed on the site. Your swift reply would be awsome. (I just got off from my final exams and apprently there isnt much time before acceptance are sent out by Google)

i wasn&#039;t able to find an email address for you (easily) so i posted a comment on ur blog. hope it reaches in time
-- 
Shahzada Hatim
http://hatim.webhop.info</description>
		<content:encoded><![CDATA[<p>Greetings,</p>
<p>I found your name as one of the mentors for Google Summer of code.</p>
<p>Could you tell me who would be the person most interested in improvements in Mozilla Download Manager? there is no mentor listed on the site. Your swift reply would be awsome. (I just got off from my final exams and apprently there isnt much time before acceptance are sent out by Google)</p>
<p>i wasn&#8217;t able to find an email address for you (easily) so i posted a comment on ur blog. hope it reaches in time<br />
&#8211;<br />
Shahzada Hatim<br />
<a href="http://hatim.webhop.info" rel="nofollow">http://hatim.webhop.info</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nickolay Ponomarev</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2312</link>
		<dc:creator>Nickolay Ponomarev</dc:creator>
		<pubDate>Fri, 19 May 2006 14:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2312</guid>
		<description>The code for Daniel&#039;s suggestion for my future reference, if you don&#039;t mind me putting it here.


//textarea:focus { z-index: 57; }

  function getFocusedTextArea() {
    var textareas = document.getElementsByTagName(&quot;textarea&quot;);
    for(var i=0; i lessthan textareas.length; i++) {
      var ta = textareas.item(i);
      if (window.getComputedStyle(ta, null).zIndex == 57) {
        return ta;
      }
    }
  }</description>
		<content:encoded><![CDATA[<p>The code for Daniel&#8217;s suggestion for my future reference, if you don&#8217;t mind me putting it here.</p>
<p>//textarea:focus { z-index: 57; }</p>
<p>  function getFocusedTextArea() {<br />
    var textareas = document.getElementsByTagName(&#8220;textarea&#8221;);<br />
    for(var i=0; i lessthan textareas.length; i++) {<br />
      var ta = textareas.item(i);<br />
      if (window.getComputedStyle(ta, null).zIndex == 57) {<br />
        return ta;<br />
      }<br />
    }<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2309</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Thu, 18 May 2006 03:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2309</guid>
		<description>The WSJ feature doesn&#039;t involve textareas.</description>
		<content:encoded><![CDATA[<p>The WSJ feature doesn&#8217;t involve textareas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2308</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Wed, 17 May 2006 15:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2308</guid>
		<description>How do they do it on the WSJ homepage? (www.wsj.com) If you select text and right-click, they search for it. pretty cool all around.</description>
		<content:encoded><![CDATA[<p>How do they do it on the WSJ homepage? (www.wsj.com) If you select text and right-click, they search for it. pretty cool all around.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: STR8BLOGGIN &#187; Blog Archive &#187; Two Javascript hacks</title>
		<link>http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/comment-page-1/#comment-2303</link>
		<dc:creator>STR8BLOGGIN &#187; Blog Archive &#187; Two Javascript hacks</dc:creator>
		<pubDate>Wed, 10 May 2006 16:20:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.squarefree.com/2006/05/06/finding-the-textarea-selection/#comment-2303</guid>
		<description>[...] How to detect the currently focused element via JS, without adding a ton of onFocus/onBlur handlers to everything [...]</description>
		<content:encoded><![CDATA[<p>[...] How to detect the currently focused element via JS, without adding a ton of onFocus/onBlur handlers to everything [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

