<?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: Forcing Letter Case with CSS and jQuery</title>
	<atom:link href="http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 24 Jul 2010 01:31:25 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: dru89</title>
		<link>http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/comment-page-1/#comment-1447</link>
		<dc:creator>dru89</dc:creator>
		<pubDate>Fri, 21 May 2010 22:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://devness.com/?p=45#comment-1447</guid>
		<description>While I appreciate the use of jQuery as well, jQuery is overkill for what you&#039;re trying to achieve.

document.getElementById(&quot;id_name&quot;).value = document.getElementById(&quot;id_name&quot;).value.toUpperCase();

If you use jQuery, you have to preload the whole library just for this.</description>
		<content:encoded><![CDATA[<p>While I appreciate the use of jQuery as well, jQuery is overkill for what you&#8217;re trying to achieve.</p>
<p>document.getElementById(&#8221;id_name&#8221;).value = document.getElementById(&#8221;id_name&#8221;).value.toUpperCase();</p>
<p>If you use jQuery, you have to preload the whole library just for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ade</title>
		<link>http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/comment-page-1/#comment-378</link>
		<dc:creator>ade</dc:creator>
		<pubDate>Thu, 22 Oct 2009 08:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://devness.com/?p=45#comment-378</guid>
		<description>Hello,

Thx for the article, it really heped me. I`ve altered the code a little to suit my needs:
&lt;code&gt;
$(this).find(&quot;.upper&quot;).each(function(){
		$(this).keyup(function(event){
		    $(this).val(String($(this).val()).toUpperCase());
		});
		$(this).change(function(event){
		    $(this).val(String($(this).val()).toUpperCase());
		});
    }); 
&lt;/code&gt;
This will change the case as the user types. Also is binded to chande event, in case user selects the contents of input form browser suggestion box.
This is usefull if you need the contents uppercased before the submit (in my case, multiple validations).

Hope this help someone.</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Thx for the article, it really heped me. I`ve altered the code a little to suit my needs:</p>
<div class="codesnip-container" >$(this).find(&#8221;.upper&#8221;).each(function(){<br />
		$(this).keyup(function(event){<br />
		    $(this).val(String($(this).val()).toUpperCase());<br />
		});<br />
		$(this).change(function(event){<br />
		    $(this).val(String($(this).val()).toUpperCase());<br />
		});<br />
    });</div>
<p>This will change the case as the user types. Also is binded to chande event, in case user selects the contents of input form browser suggestion box.<br />
This is usefull if you need the contents uppercased before the submit (in my case, multiple validations).</p>
<p>Hope this help someone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dmoena</title>
		<link>http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/comment-page-1/#comment-86</link>
		<dc:creator>dmoena</dc:creator>
		<pubDate>Tue, 28 Jul 2009 19:09:35 +0000</pubDate>
		<guid isPermaLink="false">http://devness.com/?p=45#comment-86</guid>
		<description>@Carmen,

the form at your site is forcing upper case, but you don&#039;t want to force any casing, right?

The best you can do is to talk with the &quot;software people&quot; and ask them for remove that case transformation or to assure you that every letter will be upper cased, so you can add a nice &quot;* Remember: username and password must be upper case&quot; at the login page (I prefer the idea of removing case transforamtion though).

Hope this help</description>
		<content:encoded><![CDATA[<p>@Carmen,</p>
<p>the form at your site is forcing upper case, but you don&#8217;t want to force any casing, right?</p>
<p>The best you can do is to talk with the &#8220;software people&#8221; and ask them for remove that case transformation or to assure you that every letter will be upper cased, so you can add a nice &#8220;* Remember: username and password must be upper case&#8221; at the login page (I prefer the idea of removing case transforamtion though).</p>
<p>Hope this help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carmen</title>
		<link>http://devness.com/2009/06/forcing-letter-case-with-css-and-jquery/comment-page-1/#comment-84</link>
		<dc:creator>Carmen</dc:creator>
		<pubDate>Mon, 27 Jul 2009 23:32:42 +0000</pubDate>
		<guid isPermaLink="false">http://devness.com/?p=45#comment-84</guid>
		<description>this is exactly what I need to know... however, I&#039;m neither sure WHERE to add either of the codes above, nor how to &quot;connect&quot; them. My web form is being entered only in upper case, thereby not allowing user to enter in their password. 

web form under can be found at &quot;Age Less Affiliates&quot; at www.livelongnaturally.com

spoke with software &quot;people,&quot; but they state it is a Wordpress problem... please advise</description>
		<content:encoded><![CDATA[<p>this is exactly what I need to know&#8230; however, I&#8217;m neither sure WHERE to add either of the codes above, nor how to &#8220;connect&#8221; them. My web form is being entered only in upper case, thereby not allowing user to enter in their password. </p>
<p>web form under can be found at &#8220;Age Less Affiliates&#8221; at <a href="http://www.livelongnaturally.com" rel="nofollow">http://www.livelongnaturally.com</a></p>
<p>spoke with software &#8220;people,&#8221; but they state it is a Wordpress problem&#8230; please advise</p>
]]></content:encoded>
	</item>
</channel>
</rss>
