<?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: Resize HTML Forms In Firefox</title> <atom:link href="http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Sun, 12 Feb 2012 03:50: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: Textarea++ Gives Firefox Users Control Over Textareas On Websites</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-1311297</link> <dc:creator>Textarea++ Gives Firefox Users Control Over Textareas On Websites</dc:creator> <pubDate>Tue, 01 Mar 2011 11:40:44 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-1311297</guid> <description>[...] as textareas usually do not come with scrollbars.Back in 2008 we reviewed a Firefox add-on called Text Area Resizer &amp; Mover which did a great job of resizing textareas. Not only the ones that were to small but also the ones [...]</description> <content:encoded><![CDATA[<p>[...] as textareas usually do not come with scrollbars.Back in 2008 we reviewed a Firefox add-on called Text Area Resizer &amp; Mover which did a great job of resizing textareas. Not only the ones that were to small but also the ones [...]</p> ]]></content:encoded> </item> <item><title>By: Codeburner, Referenca HTML dhe CSS &#124; Albanian News And Articles</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-1190511</link> <dc:creator>Codeburner, Referenca HTML dhe CSS &#124; Albanian News And Articles</dc:creator> <pubDate>Sun, 19 Sep 2010 20:00:14 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-1190511</guid> <description>[...] HTML Format Resize Në Firefox  Vetësi dhe Siguri: Playground HTML  Techposters: Quick Reference Guide Postera  Kontrolloni CSS Prona me Xray  Si për të krijuar Sitemaps Për HTML Websites statikë [...]</description> <content:encoded><![CDATA[<p>[...] HTML Format Resize Në Firefox  Vetësi dhe Siguri: Playground HTML  Techposters: Quick Reference Guide Postera  Kontrolloni CSS Prona me Xray  Si për të krijuar Sitemaps Për HTML Websites statikë [...]</p> ]]></content:encoded> </item> <item><title>By: Ridimensionare i form HTML in Firefox &#124; Firefox Blog</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-536488</link> <dc:creator>Ridimensionare i form HTML in Firefox &#124; Firefox Blog</dc:creator> <pubDate>Fri, 14 Nov 2008 14:08:35 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-536488</guid> <description>[...] Leave a comment   Postato da Martin su ghacks  [...]</description> <content:encoded><![CDATA[<p>[...] Leave a comment   Postato da Martin su ghacks  [...]</p> ]]></content:encoded> </item> <item><title>By: Dotan Cohen</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-459429</link> <dc:creator>Dotan Cohen</dc:creator> <pubDate>Mon, 25 Aug 2008 16:21:08 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-459429</guid> <description>It does not resize the form, but rather the textarea elements. Here are some Javascript booklets that are similar:
javascript:for(var%20a=document.getElementsByTagName(&quot;textarea&quot;),i=0;i&lt;a.length;i++){a[i].style.width=&quot;100%&quot;;a[i].style.height=&quot;300px&quot;;}void(0);
----------------------------------------------
javascript:(function(){var%20i,x;%20for(i=0;x=document.getElementsByTagName(%22textarea%22)[i];++i)%20x.rows%20+=%205;%20})()
----------------------------------------------
javascript:TxtRsz={formEl:null,adEv:function(t,ev,fn){if(typeof%20document.addEventListener!=&#039;undefined&#039;){t.addEventListener(ev,fn,false)}else{t.attachEvent(&#039;on&#039;+ev,fn)}},rmEv:function(t,ev,fn){if(typeof%20document.removeEventListener!=&#039;undefined&#039;){t.removeEventListener(ev,fn,false)}else{t.detachEvent(&#039;on&#039;+ev,fn)}},init:function(){var%20textareas=document.getElementsByTagName(&#039;textarea&#039;);for(var%20i=0;i&lt;textareas.length;i++){textareas[i].style.cursor=&#039;se-resize&#039;}var%20inputs=document.getElementsByTagName(&#039;input&#039;);for(var%20i=0;i&lt;inputs.length;i++){if(inputs[i].type==&#039;text&#039;){inputs[i].style.cursor=&#039;e-resize&#039;}}TxtRsz.adEv(document,&#039;mousedown&#039;,TxtRsz.initResize)},initResize:function(event){if(typeof%20event==&#039;undefined&#039;){event=window.event}var%20target=event.target&#124;&#124;event.srcElement;if(target.nodeName.toLowerCase()==&#039;textarea&#039;&#124;&#124;(target.nodeName.toLowerCase()==&#039;input&#039;&amp;&amp;target.type==&#039;text&#039;)){TxtRsz.formEl=target;TxtRsz.formEl.startWidth=TxtRsz.formEl.clientWidth;TxtRsz.formEl.startHeight=TxtRsz.formEl.clientHeight;TxtRsz.formEl.startX=event.clientX;TxtRsz.formEl.startY=event.clientY;TxtRsz.adEv(document,&#039;mousemove&#039;,TxtRsz.resize);TxtRsz.adEv(document,&#039;mouseup&#039;,TxtRsz.stopResize);try{event.preventDefault()}catch(e){}}},resize:function(event){if(typeof%20event==&#039;undefined&#039;){event=window.event}try{TxtRsz.formEl.style.width=event.clientX-TxtRsz.formEl.startX+TxtRsz.formEl.startWidth+&#039;px&#039;}catch(e){}if(TxtRsz.formEl.nodeName.toLowerCase()==&#039;textarea&#039;){TxtRsz.formEl.style.height=event.clientY-TxtRsz.formEl.startY+TxtRsz.formEl.startHeight+&#039;px&#039;}},stopResize:function(event){TxtRsz.rmEv(document,&#039;mousedown&#039;,TxtRsz.initResize);TxtRsz.rmEv(document,&#039;mousemove&#039;,TxtRsz.resize);var%20textareas=document.getElementsByTagName(&#039;textarea&#039;);for(var%20i=0;i&lt;textareas.length;i++){textareas[i].style.cursor=&#039;text&#039;}var%20inputs=document.getElementsByTagName(&#039;input&#039;);for(var%20i=0;i&lt;inputs.length;i++){if(inputs[i].type==&#039;text&#039;){inputs[i].style.cursor=&#039;text&#039;}}}};TxtRsz.init();</description> <content:encoded><![CDATA[<p>It does not resize the form, but rather the textarea elements. Here are some Javascript booklets that are similar:</p><p>javascript:for(var%20a=document.getElementsByTagName(&#8220;textarea&#8221;),i=0;i&lt;a.length;i++){a[i].style.width=&#8221;100%&#8221;;a[i].style.height=&#8221;300px&#8221;;}void(0);</p><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br
/> javascript:(function(){var%20i,x;%20for(i=0;x=document.getElementsByTagName(%22textarea%22)[i];++i)%20x.rows%20+=%205;%20})()</p><p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br
/> javascript:TxtRsz={formEl:null,adEv:function(t,ev,fn){if(typeof%20document.addEventListener!=&#8217;undefined&#8217;){t.addEventListener(ev,fn,false)}else{t.attachEvent(&#8216;on&#8217;+ev,fn)}},rmEv:function(t,ev,fn){if(typeof%20document.removeEventListener!=&#8217;undefined&#8217;){t.removeEventListener(ev,fn,false)}else{t.detachEvent(&#8216;on&#8217;+ev,fn)}},init:function(){var%20textareas=document.getElementsByTagName(&#8216;textarea&#8217;);for(var%20i=0;i&lt;textareas.length;i++){textareas[i].style.cursor=&#8217;se-resize&#8217;}var%20inputs=document.getElementsByTagName(&#8216;input&#8217;);for(var%20i=0;i&lt;inputs.length;i++){if(inputs[i].type==&#8217;text&#8217;){inputs[i].style.cursor=&#8217;e-resize&#8217;}}TxtRsz.adEv(document,&#8217;mousedown&#8217;,TxtRsz.initResize)},initResize:function(event){if(typeof%20event==&#8217;undefined&#8217;){event=window.event}var%20target=event.target||event.srcElement;if(target.nodeName.toLowerCase()==&#8217;textarea&#8217;||(target.nodeName.toLowerCase()==&#8217;input&#8217;&amp;&amp;target.type==&#8217;text&#8217;)){TxtRsz.formEl=target;TxtRsz.formEl.startWidth=TxtRsz.formEl.clientWidth;TxtRsz.formEl.startHeight=TxtRsz.formEl.clientHeight;TxtRsz.formEl.startX=event.clientX;TxtRsz.formEl.startY=event.clientY;TxtRsz.adEv(document,&#8217;mousemove&#8217;,TxtRsz.resize);TxtRsz.adEv(document,&#8217;mouseup&#8217;,TxtRsz.stopResize);try{event.preventDefault()}catch(e){}}},resize:function(event){if(typeof%20event==&#8217;undefined&#8217;){event=window.event}try{TxtRsz.formEl.style.width=event.clientX-TxtRsz.formEl.startX+TxtRsz.formEl.startWidth+&#8217;px&#8217;}catch(e){}if(TxtRsz.formEl.nodeName.toLowerCase()==&#8217;textarea&#8217;){TxtRsz.formEl.style.height=event.clientY-TxtRsz.formEl.startY+TxtRsz.formEl.startHeight+&#8217;px&#8217;}},stopResize:function(event){TxtRsz.rmEv(document,&#8217;mousedown&#8217;,TxtRsz.initResize);TxtRsz.rmEv(document,&#8217;mousemove&#8217;,TxtRsz.resize);var%20textareas=document.getElementsByTagName(&#8216;textarea&#8217;);for(var%20i=0;i&lt;textareas.length;i++){textareas[i].style.cursor=&#8217;text&#8217;}var%20inputs=document.getElementsByTagName(&#8216;input&#8217;);for(var%20i=0;i&lt;inputs.length;i++){if(inputs[i].type==&#8217;text&#8217;){inputs[i].style.cursor=&#8217;text&#8217;}}}};TxtRsz.init();</p> ]]></content:encoded> </item> <item><title>By: Roman ShaRP</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-459285</link> <dc:creator>Roman ShaRP</dc:creator> <pubDate>Mon, 25 Aug 2008 11:29:02 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-459285</guid> <description>Not a big deal, but nice implementation :)</description> <content:encoded><![CDATA[<p>Not a big deal, but nice implementation :)</p> ]]></content:encoded> </item> <item><title>By: Decidiamo la grandezza dei form HTML in Firefox - Geekissimo</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-459227</link> <dc:creator>Decidiamo la grandezza dei form HTML in Firefox - Geekissimo</dc:creator> <pubDate>Mon, 25 Aug 2008 10:04:35 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-459227</guid> <description>[...] Via &#124; ghacks [...]</description> <content:encoded><![CDATA[<p>[...] Via | ghacks [...]</p> ]]></content:encoded> </item> <item><title>By: Dante</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-458716</link> <dc:creator>Dante</dc:creator> <pubDate>Sun, 24 Aug 2008 19:17:27 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-458716</guid> <description>Whenever I encounter such websites where the webmaster only tested their form boxes in 640x480 format, I automatically assume that I&#039;m not part the demographics that they want, and not bother with them.  I&#039;m assuming they don&#039;t want anybody with money to spend on bigger monitors and larger text.  So when the text box comes up and overshadows the words in the article and it&#039;s impossible to read or fill out because the &quot;submit&quot; button is off the screen of the box, I just assume they want poor, penniless nobodies as their audience group.
While this add-on is nice.  I don&#039;t see the need to do business with people who obviously doesn&#039;t have anything I want.</description> <content:encoded><![CDATA[<p>Whenever I encounter such websites where the webmaster only tested their form boxes in 640&#215;480 format, I automatically assume that I&#8217;m not part the demographics that they want, and not bother with them.  I&#8217;m assuming they don&#8217;t want anybody with money to spend on bigger monitors and larger text.  So when the text box comes up and overshadows the words in the article and it&#8217;s impossible to read or fill out because the &#8220;submit&#8221; button is off the screen of the box, I just assume they want poor, penniless nobodies as their audience group.</p><p>While this add-on is nice.  I don&#8217;t see the need to do business with people who obviously doesn&#8217;t have anything I want.</p> ]]></content:encoded> </item> <item><title>By: Crazyfox</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-458562</link> <dc:creator>Crazyfox</dc:creator> <pubDate>Sun, 24 Aug 2008 16:40:40 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-458562</guid> <description>For greasemonkey: textarea drag resize.
http://userscripts.org/scripts/show/10140</description> <content:encoded><![CDATA[<p>For greasemonkey: textarea drag resize.<br
/> http://userscripts.org/scripts/show/10140</p> ]]></content:encoded> </item> <item><title>By: Martin</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-458473</link> <dc:creator>Martin</dc:creator> <pubDate>Sun, 24 Aug 2008 15:37:51 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-458473</guid> <description>link added, sorry for that.</description> <content:encoded><![CDATA[<p>link added, sorry for that.</p> ]]></content:encoded> </item> <item><title>By: Keshav</title><link>http://www.ghacks.net/2008/08/24/resize-html-forms-in-firefox/comment-page-1/#comment-458454</link> <dc:creator>Keshav</dc:creator> <pubDate>Sun, 24 Aug 2008 15:28:56 +0000</pubDate> <guid
isPermaLink="false">http://www.ghacks.net/?p=6434#comment-458454</guid> <description>Good post! Seems like you were so excited when writing this post that you forgot to include the link to the addon :D</description> <content:encoded><![CDATA[<p>Good post! Seems like you were so excited when writing this post that you forgot to include the link to the addon :D</p> ]]></content:encoded> </item> </channel> </rss>
