<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>smartanuj.com &#187; spell checking</title>
	<atom:link href="http://smartanuj.com/tag/spell-checking/feed" rel="self" type="application/rss+xml" />
	<link>http://smartanuj.com</link>
	<description>Its my blog</description>
	<lastBuildDate>Tue, 07 Sep 2010 11:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Web Developer Tips &#8211; How to disable spellcheck in firefox</title>
		<link>http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox</link>
		<comments>http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox#comments</comments>
		<pubDate>Wed, 27 Jan 2010 12:27:48 +0000</pubDate>
		<dc:creator>Anuj Tenani</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[disable spellcheck]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[spell checking]]></category>
		<category><![CDATA[textarea]]></category>

		<guid isPermaLink="false">http://smartanuj.com/?p=128</guid>
		<description><![CDATA[Hello my fellow web developers and designers. Many times while creating a websites we are encountered with problem of not so good looking forms , and on top of that firefox’s built in spellcheck functionality adds to the disgrace by adding red dotted underline to misspelled words , or more appropriately words that are not]]></description>
			<content:encoded><![CDATA[<p>Hello my fellow web developers and designers. Many times while creating a websites we are encountered with problem of not so good looking forms , and on top of that firefox’s built in spellcheck functionality adds to the disgrace by adding red dotted underline to misspelled words , or more appropriately words that are not in firefox’s dictionary. For eg. Have a look at the following “textarea” input field. It is a default textarea field with attributes rows=&quot;5” and cols=”40” set. i.e. </p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;textarea rows=&quot;5&quot; cols=&quot;40&quot;&gt; &lt;/textarea&gt;</pre></td></tr></table></div>

<p><a href="http://smartanuj.com/wp-content/uploads/2010/01/default_textarea.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title=" default textarea field with attributes rows=&quot;5” and cols=”40”" border="0" alt=" default textarea field with attributes rows=&quot;5” and cols=”40”" src="http://smartanuj.com/wp-content/uploads/2010/01/default_textarea_thumb.jpg" width="373" height="134" /></a> </p>
<p>Do you see the red-dotted underline beneath “textarea” and “smartanuj” , they just are not good. Whatever firefox thinks to me both textarea and smartanuj are correct spellings. So how can i get rid of this problem.</p>
<p>Now here is a another subtle but significantly good looking textarea </p>
<p><a href="http://smartanuj.com/wp-content/uploads/2010/01/spiced_up.jpg"><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Good Looking Textarea" border="0" alt="Good Looking Textarea" src="http://smartanuj.com/wp-content/uploads/2010/01/spiced_up_thumb.jpg" width="444" height="189" /></a> </p>
<p>You see how the textarea and smartanuj both are free of the red-dotted underlines. Lets see how you can accomplish the same. </p>
<p>To create the above textarea i used the following code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;textarea spellcheck=&quot;false&quot; rows=&quot;5&quot; cols=&quot;40&quot; style=&quot;border:1px solid #ccc;-moz-border-radius:4px;padding:5px;font-family:Verdana, Geneva, sans-serif;font-size:20px;color:#4B4949&quot;&gt;
&lt;/textarea&gt;</pre></td></tr></table></div>

<p>Lets break down the textarea bits by bits and understand whats going on there</p>
<pre>spellcheck="false"</pre>
<p>Disables the firefox spellcheck functionality on that textarea</p>
<pre> rows="5" cols="40"</pre>
<p>Sets rows and columns of textarea or width and height of the textarea </p>
<pre> border:1px solid #ccc; </pre>
<p>Sets border around the textarea which is 1px in width , solid and has color code #ccc </p>
<pre> -moz-border-radius:4px </pre>
<p> Curves the border around the corners in an arc of radius 4 cms </p>
<pre> padding:5px </pre>
<p> Sets padding 5 pixels , so the characters are some pixels away from the borders </p>
<pre>font-family:Verdana, Geneva, sans-serif;font-size:20px;color:#4B4949</pre>
<p> Sets font-family to &#8220;Verdana , Geneva , Sans-serif &#8221; , the size to 20px , and font-color to color code #4B4949</p>
<p> Isn&#8217;t it fairly simple. Important thing to remember , the make the styles inline to give the textarea proper formatting </p>
<p> If you have any questions please use the comments area below</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox+-+http://b2l.me/euh2t&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;imageurl=" rel="nofollow" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox&amp;desc=Hello%20my%20fellow%20web%20developers%20and%20designers.%20Many%20times%20while%20creating%20a%20websites%20we%20are%20encountered%20with%20problem%20of%20not%20so%20good%20looking%20forms%20%2C%20and%20on%20top%20of%20that%20firefox%E2%80%99s%20built%20in%20spellcheck%20functionality%20adds%20to%20the%20disgrace%20by%20adding%20red%20dotted%20underline%20to%20misspelled%20words%20%2C%20or%20more%20appropr" rel="nofollow" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;bm_description=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox&amp;plugin=sexybookmarks" rel="nofollow" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox" rel="nofollow" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox&amp;title=Web+Developer+Tips+%26ndash%3B+How+to+disable+spellcheck+in+firefox" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://smartanuj.com/web-developer-tips-how-to-disable-spellcheck-in-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
