<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on Textarea Drag Resize | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/10140</link>
    <description>Recent comments on userscript: Textarea Drag Resize</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by Glenn Carr @ Tue, 14 Oct 2008 09:10:11 -0500</title>
      <description>&lt;p&gt;Made changes to allow resizing lists:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;  var them = document.getElementsByTagName(&quot;textarea&quot;);
&lt;br /&gt;  var lists = document.getElementsByTagName(&quot;select&quot;); // new line
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;...and...
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;  trace(5, them.length.toString() + &quot; textareas.&quot;);
&lt;br /&gt;// Start of new code:
&lt;br /&gt;  for(var i = lists.length - 1; i &gt;= 0; i--) {
&lt;br /&gt;    var listSize = lists[i].getAttribute(&quot;size&quot;);
&lt;br /&gt;    if ( listSize != null &amp;amp;&amp;amp; parseInt( listSize, 10 ) &gt; 1 )
&lt;br /&gt;      tweak_textarea(lists[i]);
&lt;br /&gt;  }
&lt;br /&gt;  trace(5, lists.length.toString() + &quot; textareas.&quot;);
&lt;br /&gt;// End new code
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;...and...
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;  button.title = &quot;Click and drag to change the size&quot;; // changed text from &quot;Click and drag me to change the textarea's size&quot;
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 14 Oct 2008 09:10:11 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23644</guid>
      <author>Glenn Carr</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Glenn Carr @ Tue, 23 Sep 2008 08:29:16 -0500</title>
      <description>&lt;p&gt;Thanks for the great script.  Here's a minor change I made to your script  to change the cursor when hovering over the resize image:
&lt;br /&gt;&lt;code&gt;
&lt;br /&gt;  button.setAttribute('class', 'text_area_grabber_button');
&lt;br /&gt;  GM_addStyle( '.text_area_grabber_button { cursor:se-resize }' );
&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 23 Sep 2008 08:29:16 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23645</guid>
      <author>Glenn Carr</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Morac @ Mon, 25 Aug 2008 14:03:19 -0500</title>
      <description>&lt;p&gt;Just another update.  It makes it so that the little grabber button only displays when the textarea it is attached to is displayed.  This prevents a bunch of buttons from showing underneath textareas which are selected via &quot;tabs&quot;.&lt;/p&gt;

&lt;p&gt;Every now and then there is a page where the button shows underneath the textarea instead of next to it, but there's no way to fix that without breaking forms.  The button still works, but doesn't move.&lt;/p&gt;</description>
      <pubDate>Mon, 25 Aug 2008 14:03:19 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23646</guid>
      <author>Morac</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Morac @ Mon, 18 Aug 2008 16:19:05 -0500</title>
      <description>&lt;p&gt;Okay the update I made yesterday broke sites that use WYSISWYG editing.  I undid the changes I made yesterday and went with a more simplistic approach.  The new version won't break any sites and won't mess with the formatting of the page.  Also the resize button won't be displayed if the text area is actually hidden like it is on many WYSISWYG editting forums.&lt;/p&gt;</description>
      <pubDate>Mon, 18 Aug 2008 16:19:05 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23647</guid>
      <author>Morac</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Morac @ Sun, 17 Aug 2008 10:44:59 -0500</title>
      <description>&lt;p&gt;I updated to prevent it from screwing up with white space wrapping on page, i.e. pages ended up being wider than the browser window.&lt;/p&gt;

&lt;p&gt;Unfortunately putting the textarea in a div container doesn't work because for some reason Firefox occasionally won't submit textareas that have been moved, so instead I cloned the textarea and hid the original.  The clone is linked to the original such that any update to the text in the clone changes the original's text.  This works well.&lt;/p&gt;</description>
      <pubDate>Sun, 17 Aug 2008 10:44:59 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23648</guid>
      <author>Morac</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Alvin @ Wed, 16 Jul 2008 05:30:36 -0500</title>
      <description>&lt;p&gt;FAIL.&lt;/p&gt;</description>
      <pubDate>Wed, 16 Jul 2008 05:30:36 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23649</guid>
      <author>Alvin</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Chris4 @ Fri, 27 Jun 2008 17:56:46 -0500</title>
      <description>&lt;p&gt;This screws up the contact form on my website, so unfortunately I can no long use the script.&lt;/p&gt;

&lt;p&gt;I thought I had broken Firefox at first, somehow.&lt;/p&gt;</description>
      <pubDate>Fri, 27 Jun 2008 17:56:46 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23650</guid>
      <author>Chris4</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Chris4 @ Thu, 26 Jun 2008 19:17:55 -0500</title>
      <description>&lt;p&gt;Thanks, trying now.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.pcworld.com/article/id,147266-page,4-c,plugins/article.html&quot;&gt;http://www.pcworld.com/article/id,147266-page,4...&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jun 2008 19:17:55 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23651</guid>
      <author>Chris4</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by lootpacker @ Wed, 06 Feb 2008 18:58:38 -0600</title>
      <description>&lt;p&gt;This is pretty handy&lt;/p&gt;</description>
      <pubDate>Wed, 06 Feb 2008 18:58:38 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23652</guid>
      <author>lootpacker</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Josh Gunderson @ Wed, 02 Jan 2008 23:43:46 -0600</title>
      <description>&lt;p&gt;Works as advertised. I find it especially useful for the MySpace Mail Center.&lt;/p&gt;</description>
      <pubDate>Wed, 02 Jan 2008 23:43:46 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23653</guid>
      <author>Josh Gunderson</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Schlick @ Wed, 04 Jul 2007 05:14:38 -0500</title>
      <description>&lt;p&gt;I eagerly changed to use this script instead however on the first site I tested it on (&lt;a href=&quot;http://esirotab.starclass.com.au/&quot;&gt;http://esirotab.starclass.com.au/&lt;/a&gt;) it stuffed up the visual display of the textarea and surrounding elements.&lt;/p&gt;</description>
      <pubDate>Wed, 04 Jul 2007 05:14:38 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23654</guid>
      <author>Schlick</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Silly Walrus @ Thu, 28 Jun 2007 18:13:34 -0500</title>
      <description>&lt;p&gt;Very useful userscript, thanks.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Jun 2007 18:13:34 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23655</guid>
      <author>Silly Walrus</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Morac @ Thu, 28 Jun 2007 09:33:18 -0500</title>
      <description>&lt;p&gt;Fixed a minor issue where sometimes the text area would go off the right side of the window.&lt;/p&gt;</description>
      <pubDate>Thu, 28 Jun 2007 09:33:18 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23656</guid>
      <author>Morac</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Morac @ Sat, 23 Jun 2007 15:19:13 -0500</title>
      <description>&lt;p&gt;This is a modified version of Sean M. Burke's textarea resize script.  &lt;a href=&quot;http://userscripts.org/scripts/show/5073&quot;&gt;http://userscripts.org/scripts/show/5073&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I fixed the problem where sometimes the text in the textarea wouldn't be submitted (basically the text got lost).&lt;/p&gt;

&lt;p&gt;This script does not have that problem.&lt;/p&gt;</description>
      <pubDate>Sat, 23 Jun 2007 15:19:13 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23657</guid>
      <author>Morac</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews @ Tue, 16 Nov 2004 19:06:03 -0600</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Tue, 16 Nov 2004 19:06:03 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:10582:23643</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/topics/10582</link>
    </item>
  </channel>
</rss>
