<?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>The Code Dojo &#187; jQuery</title>
	<atom:link href="http://dojo.codegreene.com/tag/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://dojo.codegreene.com</link>
	<description>The Code Dojo is the veritable repository of random musings from the development team at Code Greene.</description>
	<lastBuildDate>Fri, 20 Jan 2012 18:09:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Helpful jQuery Tricks, Notes, and Best Practices Part II</title>
		<link>http://dojo.codegreene.com/2012/01/helpful-jquery-tricks-notes-and-best-practices-part-ii/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helpful-jquery-tricks-notes-and-best-practices-part-ii</link>
		<comments>http://dojo.codegreene.com/2012/01/helpful-jquery-tricks-notes-and-best-practices-part-ii/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 18:07:31 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=931</guid>
		<description><![CDATA[Continuing the jQuery pain fun of some tips I&#8217;ve learned over the years&#8230; Read Part I Here Don&#8217;t Abuse $(this) Without knowing about the various DOM properties and functions, it can be easy to abuse the jQuery object needlessly. For instance: $('#someAnchor').click(function() { alert( $(this).attr('id') ); }); If our only need of the jQuery object [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-955" style="margin: 0 0 0 10px;" title="jquery-logo" src="http://dojo.codegreene.com/wp-content/uploads/2012/01/jquery-logo.png" alt="jQuery Logo" width="195" height="48" />Continuing the jQuery <del datetime="2012-01-13T16:11:48+00:00">pain</del> fun of some tips I&#8217;ve learned over the years&#8230; <a title="Helpful jQuery Tricks, Notes, and Best Practices Part I" href="http://dojo.codegreene.com/2011/12/helpful-jquery-tricks-notes-and-best-practices-part-i/">Read Part I Here</a></p>
<p><strong>Don&#8217;t Abuse $(this)</strong><br />
Without knowing about the various DOM properties and functions, it can be easy to abuse the jQuery object needlessly. For instance:</p>
<pre>$('#someAnchor').click(function() {
    alert( $(this).attr('id') );
});</pre>
<p><span id="more-931"></span>If our only need of the jQuery object is to access the anchor tag&#8217;s id attribute, this is wasteful. Better to stick with &#8220;raw&#8221; JavaScript.</p>
<pre>$('#someAnchor').click(function() {
    alert( this.id );
});</pre>
<p>Please note that there are three attributes that should always be accessed, via jQuery: &#8220;src,&#8221; &#8220;href,&#8221; and &#8220;style.&#8221; These attributes require the use of getAttribute in older versions of IE.</p>
<pre>// jQuery Source
var rspecialurl = /href|src|style/;
// ...
var special = rspecialurl.test( name );
// ...
var attr = !jQuery.support.hrefNormalized &amp;&amp; notxml &amp;&amp; special ?
    // Some attributes require a special call on IE
    elem.getAttribute( name, 2 ) :
    elem.getAttribute( name );</pre>
<p><strong>Multiple jQuery Objects</strong><br />
Even worse is the process of repeatedly querying the DOM and creating multiple jQuery objects.</p>
<pre>$('#elem').hide();
$('#elem').html('bla');
$('#elem').otherStuff();</pre>
<p>Hopefully, you&#8217;re already aware of how inefficient this code is. If not, that&#8217;s okay; we&#8217;re all learning. The answer is to either implement chaining, or to &#8220;cache&#8221; the location of #elem.</p>
<pre>// This works better
$('#elem')
  .hide()
  .html('bla')
  .otherStuff();  

// Or this, if you prefer for some reason.
var elem = $('#elem');
elem.hide();
elem.html('bla');
elem.otherStuff();</pre>
<p><strong>jQuery&#8217;s Shorthand Ready Method</strong><br />
Listening for when the document is ready to be manipulated is laughably simple with jQuery.</p>
<pre>$(document).ready(function() {
    // let's get up in heeya
});</pre>
<p>Though, it&#8217;s very possible that you might have come across a different, more confusing wrapping function.</p>
<pre>$(function() {
    // let's get up in heeya
});</pre>
<p>Though the latter is somewhat less readable, the two snippets above are identical. Don&#8217;t believe me? Just check the jQuery source.</p>
<pre>// HANDLE: $(function)
// Shortcut for document ready
if ( jQuery.isFunction( selector ) ) {
    return rootjQuery.ready( selector );
}</pre>
<p>rootjQuery is simply a reference to the root jQuery(document). When you pass a selector to the jQuery function, it&#8217;ll determine what type of selector you passed: string, tag, id, function, etc. If a function was passed, jQuery will then call its ready() method, and pass your anonymous function as the selector.</p>
<p><strong>Keep your Code Safe</strong><br />
If developing code for distribution, it&#8217;s always important to compensate for any possible name clashing. What would happen if some script, imported after yours, also had a $ function? Bad juju!</p>
<p>The answer is to either call jQuery&#8217;s noConflict(), or to store your code within a self-invoking anonymous function, and then pass jQuery to it.</p>
<p>Method 1: NoConflict</p>
<pre>var j = jQuery.noConflict();
// Now, instead of $, we use j.
j('#someDiv').hide();  

// The line below will reference some other library's $ function.
$('someDiv').style.display = 'none';</pre>
<p>Be careful with this method, and try not to use it when distributing your code. It would really confuse the user of your script! :)</p>
<p>Method 2: Passing jQuery</p>
<pre>(function($) {
    // Within this function, $ will always refer to jQuery
})(jQuery);</pre>
<p>The final parens at the bottom call the function automatically &#8212; function(){}(). However, when we call the function, we also pass jQuery, which is then represented by $.</p>
<p>Method 3: Passing $ via the Ready Method</p>
<pre>jQuery(document).ready(function($) {
 // $ refers to jQuery
});  

// $ is either undefined, or refers to some other library's function.</pre>
<p><strong>Be Smart</strong></p>
<p>Remember &#8212; jQuery is just JavaScript. Don&#8217;t assume that it has the capacity to compensate for your bad coding. :)</p>
<p>This means that, just as we must optimize things such as JavaScript for statements, the same is true for jQuery&#8217;s each() method. And why wouldn&#8217;t we? It&#8217;s just a helper method, which then creates a for statement behind the scenes.</p>
<pre>// jQuery's each method source
    each: function( object, callback, args ) {
        var name, i = 0,
            length = object.length,
            isObj = length === undefined || jQuery.isFunction(object);  

        if ( args ) {
            if ( isObj ) {
                for ( name in object ) {
                    if ( callback.apply( object[ name ], args ) === false ) {
                        break;
                    }
                }
            } else {
                for ( ; i &lt; length; ) {
                    if ( callback.apply( object[ i++ ], args ) === false ) {
                        break;
                    }
                }
            }  

        // A special, fast, case for the most common use of each
        } else {
            if ( isObj ) {
                for ( name in object ) {
                    if ( callback.call( object[ name ], name, object[ name ] ) === false ) {
                        break;
                    }
                }
            } else {
                for ( var value = object[0];
                    i &lt; length &amp;&amp; callback.call( value, i, value ) !== false; value = object[++i] ) {}
            }
        }  

        return object;
    }</pre>
<p>Awful</p>
<pre>someDivs.each(function() {
    $('#anotherDiv')[0].innerHTML += $(this).text();
});</pre>
<p>The above:</p>
<ol>
<li>Searches for anotherDiv for each iteration</li>
<li>Grabs the innerHTML property twice</li>
<li>Creates a new jQuery object, all to access the text of the element.</li>
</ol>
<p>Better</p>
<pre>var someDivs = $('#container').find('.someDivs'),
      contents = [];  

someDivs.each(function() {
    contents.push( this.innerHTML );
});
$('#anotherDiv').html( contents.join('') );</pre>
<p>This way, within the each (for) method, the only task we&#8217;re performing is adding a new key to an array&#8230;as opposed to querying the DOM, grabbing the innerHTML property of the element twice, etc.</p>
<p>This next tip is more JavaScript-based in general, rather than jQuery specific&#8230; The point is to remember that jQuery doesn&#8217;t compensate for poor coding.</p>
<p><strong>Document Fragments</strong></p>
<p>While we&#8217;re at it, another option for these sorts of situations is to use document fragments.</p>
<pre>var someUls = $('#container').find('.someUls'),
    frag = document.createDocumentFragment(),
    li;  

someUls.each(function() {
    li = document.createElement('li');
    li.appendChild( document.createTextNode(this.innerHTML) );
    frag.appendChild(li);
});  

$('#anotherUl')[0].appendChild( frag );</pre>
<p>The key here is that there are multiple ways to accomplish simple tasks like this, and each have their own performance benefits from browser to browser. The more you stick with jQuery and learn JavaScript, you also might find that you refer to JavaScript&#8217;s native properties and methods more often. And, if so, that&#8217;s fantastic!</p>
<p>jQuery provides an amazing level of abstraction that you should take advantage of, but this doesn&#8217;t mean that you&#8217;re forced into using its methods. For example, in the fragment example above, we use jQuery&#8217;s each method. If you prefer to use a for or while statement instead, that&#8217;s okay too!</p>
<p>With all that said, keep in mind that the jQuery team have heavily optimized this library. The debates about jQuery&#8217;s each() vs. the native for statement are silly and trivial. If you are using jQuery in your project, save time and use their helper methods. That&#8217;s what they&#8217;re there for! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2012/01/helpful-jquery-tricks-notes-and-best-practices-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Helpful jQuery Tricks, Notes, and Best Practices Part I</title>
		<link>http://dojo.codegreene.com/2011/12/helpful-jquery-tricks-notes-and-best-practices-part-i/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=helpful-jquery-tricks-notes-and-best-practices-part-i</link>
		<comments>http://dojo.codegreene.com/2011/12/helpful-jquery-tricks-notes-and-best-practices-part-i/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 20:34:22 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Sizzle]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=901</guid>
		<description><![CDATA[If there is one bad thing about jQuery, it’s that the entry level is so amazingly low, that it tends to attract those who haven’t an ounce of JavaScript knowledge. Now, on one hand, this is fantastic. However, on the flip side, it also results in a smattering of, quite frankly, disgustingly bad code (no [...]]]></description>
			<content:encoded><![CDATA[<p>If there is one bad thing about jQuery, it’s that the entry level is so amazingly low, that it tends to attract those who haven’t an ounce of JavaScript knowledge. Now, on one hand, this is fantastic. However, on the flip side, it also results in a smattering of, quite frankly, disgustingly bad code (no one is immune to this). But that’s okay; frighteningly poor code that would even make your grandmother gasp is a rite of passage. The key is to climb over the hill, and that’s what we’ll discuss today.<span id="more-901"></span></p>
<p><strong>Methods Return the jQuery Object</strong><br />
It’s important to remember that most methods will return the jQuery object. This is extremely helpful, and allows for the chaining functionality that we use so often.</p>
<pre>$someDiv
.attr('class', 'someClass')
.hide()
.html('new stuff');</pre>
<p>Knowing that the jQuery object is always returned, we can use this to remove superfluous code at times. For example, consider the following code:</p>
<pre>var someDiv = $('#someDiv');
someDiv.hide();</pre>
<p>The reason why we &#8220;cache&#8221; the location of the someDiv element is to limit the number of times that we have to traverse the DOM for this element to once. The code above is perfectly fine; however, you could just as easily combine the two lines into one, while achieving the same outcome.</p>
<pre>var someDiv = $('#someDiv').hide();</pre>
<p>This way, we still hide the someDiv element, but the method also, as we learned, returns the jQuery object — which is then referenced via the someDiv variable.</p>
<p><strong>The Find Selector</strong><br />
As long as your selectors aren’t ridiculously poor, jQuery does a fantastic job of optimizing them as best as possible, and you generally don’t need to worry too much about them. However, with that said, there are a handful of improvements you can make that will slightly improve your script’s performance. One such solution is to use the find() method, when possible.</p>
<pre>// Fine in modern browsers, though Sizzle does begin "running"
$('#someDiv p.someClass').hide();

// Better for all browsers, and Sizzle never inits.
$('#someDiv').find('p.someClass').hide();</pre>
<p>The latest modern browsers have support for QuerySelectorAll, which allows you to pass CSS-like selectors, without the need for jQuery. jQuery itself checks for this function as well. However, older browsers, namely IE6/IE7, understandably don’t provide support. What this means is that these more complicated selectors trigger jQuery’s full Sizzle engine, which, though brilliant, does come along with a bit more overhead. Sizzle is a brilliant mass of code that I may never understand. However, in a sentence, it first takes your selector and turns it into an &#8220;array&#8221; composed of each component of your selector.</p>
<pre>// Rough idea of how it works
['#someDiv, 'p'];</pre>
<p>It then, from right to left, begins deciphering each item with regular expressions. What this also means is that the right-most part of your selector should be as specific as possible &#8211; for instance, an id or tag name.</p>
<p>Bottom line, when possible:</p>
<ul>
<li>Keep your selectors simple</li>
<li>Utilize the find() method. This way, rather than using Sizzle, we can continue using the browser’s native functions.</li>
<li>When using Sizzle, optimize the right-most part of your selector as much as possible.</li>
</ul>
<p><strong>Context instead?</strong><br />
It&#8217;s also possible to add a context to your selectors, such as:</p>
<pre>$('.someElements', '#someContainer').hide();</pre>
<p>This code directs jQuery to wrap a collection of all the elements with a class of someElements &#8211; that are children of someContainer &#8211; within jQuery. Using a context is a helpful way to limit DOM traversal, though, behind the scenes, jQuery is using the find method instead.</p>
<pre>$('#someContainer')
.find('.someElements')
.hide();</pre>
<p>I hope this first installment has been useful to someone out there in the interweb, and if not, maybe my next few will be!</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2011/12/helpful-jquery-tricks-notes-and-best-practices-part-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sharpening the Blades: Future of Web Typography, Helpful jQuery Methods, April Fools &#8211; PHP Style</title>
		<link>http://dojo.codegreene.com/2010/04/sharpening-the-blades-future-of-web-typography-helpful-jquery-methods-april-fools-php-style/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharpening-the-blades-future-of-web-typography-helpful-jquery-methods-april-fools-php-style</link>
		<comments>http://dojo.codegreene.com/2010/04/sharpening-the-blades-future-of-web-typography-helpful-jquery-methods-april-fools-php-style/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 21:11:11 +0000</pubDate>
		<dc:creator>Master Sensei</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[April Fools]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=576</guid>
		<description><![CDATA[This April Fools edition of Sharpening the Blades only has two serious articles and we&#8217;ll let you decide on the last one. Luke talks about the Future of Web Typography, Benjam talks about jQuery Methods and Mac, well, Mac is the playful one at the office so he chimes in with his April Fools joke [...]]]></description>
			<content:encoded><![CDATA[<p>This April Fools edition of Sharpening the Blades only has two serious articles and we&#8217;ll let you decide on the last one. Luke talks about the Future of Web Typography, Benjam talks about jQuery Methods and Mac, well, Mac is the playful one at the office so he chimes in with his April Fools joke for all you PHP gurus.</p>
<p><strong>Luke</strong>,<a href="http://www.smashingmagazine.com/2010/03/01/css-and-the-future-of-text/" target="_blank"> Future of Web Typography</a><img class="alignright size-full wp-image-581" style="border: 1px solid #444444; margin: 8px 0pt 0pt 20px; padding: 2px;" title="web-typography" src="http://dojo.codegreene.com/wp-content/uploads/2010/04/web-typography.jpg" alt="" width="100" height="100" /><br />
For years typography on the web has been very limited when compared to what can be in the print world. Over the last few years though we have been given more and more tools to help us accomplish good typography on the web. As time goes on these tools will get better and will become more widely supported. There was an article on Smashing Magazine this week that talked about a lot of these tools that are available to web designers. I really enjoyed reading up, refreshing my memory of code I haven&#8217;t used in a while, and also learning some new ways of styling type. Read it over, the text on your website will be very happy you did.</p>
<p><strong>Benjam,</strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/20-helpful-jquery-methods-you-should-be-using/" target="_blank">20 Helpful jQuery Methods You Should Be Using</a><img class="alignright size-full wp-image-579" style="border: 1px solid #444444; margin: 8px 0pt 0px 20px; padding: 2px;" title="nettuts" src="http://dojo.codegreene.com/wp-content/uploads/2010/04/nettuts.jpg" alt="" width="100" height="100" /><br />
While developing a website, I use a lot of tools, both in the creation of the website files (my text editor of choice, file manager, etc.), and within the website itself (CakePHP, jQuery, CSS, etc.), and I&#8217;m always interested in finding features of those tools that I might not be very familiar with.  While I have a deep familiarity with the features I use regularly, and a passing familiarity with most of the features of these tools, it&#8217;s always good to get a refresher on what I could be using more.  Here is a post highlighting 20 jQuery methods/features (actually 33 methods in 20 groups) that should be in everybody&#8217;s familiarity tool box.</p>
<p>Mac, <a href="http://phpdeveloper.org/news/14281" target="_blank">April Fools &#8211; PHP Style</a><img class="alignright size-full wp-image-580" style="border: 1px solid #444444; margin: 8px 0pt 0pt 20px; padding: 2px;" title="phpdeveloper" src="http://dojo.codegreene.com/wp-content/uploads/2010/04/phpdeveloper.jpg" alt="" width="100" height="100" /><br />
This discusses a topic that we often only think about once or twice a year, but it is still worthy of our attention and deserves some practice to improve our skills. Also, while you are there, subscribe to the <a href="http://www.phpdeveloper.org/feed" target="_blank">PHP Developers feed</a>. The main guy, Chris Cornutt, does an excellent job of filtering the best PHP articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2010/04/sharpening-the-blades-future-of-web-typography-helpful-jquery-methods-april-fools-php-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sharpening the Blades: Styling Forms, Problem with Passwords and HTML5 in IE9</title>
		<link>http://dojo.codegreene.com/2010/03/sharpening-the-blades-styling-forms-problem-with-passwords-and-html5-in-ie9/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sharpening-the-blades-styling-forms-problem-with-passwords-and-html5-in-ie9</link>
		<comments>http://dojo.codegreene.com/2010/03/sharpening-the-blades-styling-forms-problem-with-passwords-and-html5-in-ie9/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 17:00:07 +0000</pubDate>
		<dc:creator>Master Sensei</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[Internet Explorer 9]]></category>
		<category><![CDATA[Passwords]]></category>

		<guid isPermaLink="false">http://dojo.codegreene.com/?p=485</guid>
		<description><![CDATA[This edition of Sharpening the Blades features an article from Mike about using jQuery, CSS and image sprites to create stylish forms, an article from Benjam about Passwords on the web and Mark chimes in with an article about the possibility of HTML5 in Internet Explorer 9. Mike, Get your form on with Uniform We&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[<p>This edition of Sharpening the Blades features an article from Mike about using jQuery, CSS and image sprites to create stylish forms, an article from Benjam about Passwords on the web and Mark chimes in with an article about the possibility of HTML5 in Internet Explorer 9.</p>
<p><strong>Mike</strong>,<a href="http://pixelmatrixdesign.com/uniform/" target="_blank"> Get your form on with Uniform<img class="alignright size-full wp-image-487" style="border: 1px solid #444444; margin: 8px 0pt 0pt 20px; padding: 2px;" title="uniform" src="http://dojo.codegreene.com/wp-content/uploads/2010/03/uniform.png" alt="uniform" width="100" height="100" /><br />
</a>We&#8217;ve all been there. You finish an amazing design using some sweet custom form elements that perfectly match the theme of your design. Then after a few frustrating attempts, you realize that some form elements just can&#8217;t be styled. Or if they can, not consistently. So you throw on a border, maybe a background image, and hope for the best as dreams of your custom UI vanish into nothingness. But fear not! Using the clever jQuery script Uniform and some CSS sprites, your form designs can once more be glorious! Works beautifully in all major browsers (degrades gracefully in IE6). <a href="http://pixelmatrixdesign.com/uniform/)" target="_blank"><br />
</a></p>
<p><strong>Benjam</strong>, <a href="http://www.alistapart.com/articles/the-problem-with-passwords/" target="_blank">The Problem with Passwords</a><img class="alignright size-full wp-image-489" style="border: 1px solid #444444; margin: 8px 0pt 0pt 20px; padding: 2px;" title="passwords" src="http://dojo.codegreene.com/wp-content/uploads/2010/03/passwords.jpg" alt="passwords" width="100" height="100" /><br />
Being in the Web Development industry for a while now, and having had a few third-party scripts that were on my site hacked, I have become more and more interested in web security.  Passwords are on the front lines to that.  Being a user of Web technologies, I&#8217;m also interested in usability and choice, and when it comes to showing or hiding passwords (what? you can do that?) I&#8217;m in the boat of give the user the choice.  This article nicely explains a few examples that offer people the choice to show or hide their passwords, both of which are very useful.</p>
<p><strong>Mark</strong>, <a href="http://www.webmonkey.com/blog/Microsoft_to_Double_Down_on_HTML5_With_Internet_Explorer_9" target="_blank">Microsoft to Double Down on HTML5 in Internet Explorer 9</a><img class="alignright size-full wp-image-488" style="border: 1px solid #444444; margin: 8px 0pt 0pt 20px; padding: 2px;" title="internetexplorer" src="http://dojo.codegreene.com/wp-content/uploads/2010/03/internetexplorer.jpg" alt="internetexplorer" width="100" height="100" /><br />
Doubling down seems like the wrong approach to me. If I were the CEO at Microsoft I would instead of thinking of trying to put their foot down harder, they should instead learn to bend in the winds of the market and work on compliance with the other browsers. Though I hate to say it even forced upgrades like Firefox does would be good, to keep people current and reduce the amount of cross browsers compatibility problems Microsoft gives developers. I don&#8217;t think Microsoft realizes that by making developers lives bad by trying to be different they are actually building up a mass market of developers who hate them because it is so difficult to make cross compatibility easy and affordable.</p>
]]></content:encoded>
			<wfw:commentRss>http://dojo.codegreene.com/2010/03/sharpening-the-blades-styling-forms-problem-with-passwords-and-html5-in-ie9/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

