<?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>Robert Spangler&#187; Rob</title>
	<atom:link href="http://robspangler.com/blog/author/dev/feed/" rel="self" type="application/rss+xml" />
	<link>http://robspangler.com</link>
	<description>Design - Web - Creative</description>
	<lastBuildDate>Fri, 18 May 2012 14:07:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Random IE8 Crashes &#8211; &#8220;This tab has been recovered&#8221;</title>
		<link>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/</link>
		<comments>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 18:03:49 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=477</guid>
		<description><![CDATA[An issue randomly started occurring on a few site that I had started development on last month. I was getting crashes in IE8 with the following error &#8220;Internet Explorer has encountered a problem and needs to close. We are sorry &#8230; <a href="http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An issue randomly started occurring on a few site that I had started development on last month. I was getting crashes in IE8 with the following error &#8220;<em>Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience</em>.&#8221; Followed by &#8220;<em>This tab has been recovered</em>.&#8221; when the site came back up.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-478" title="IE8 Error" src="http://robspangler.com/wp-content/uploads/2011/10/ie8error.jpg" alt="" width="427" height="271" /></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-485" title="IE8 Tab Recovered" src="http://robspangler.com/wp-content/uploads/2011/10/ie8-tab-recovered.jpg" alt="IE8 Tab Recovered" width="432" height="78" /></p>
<p>This one was not fun to diagnose, I initially thought it was something with the HTML5,  Chrome Frame or Modernizr. I was wrong, it was a bug with jQuery.</p>
<h2>The Solution</h2>
<p>It is an issue with jQuery version 1.6.2 (which was the latest version at time of development). Luckily they fixed the issue, so the fix on your end is simple&#8230; <strong>Update to the latest version of <a href="http://www.jquery.com/" target="_blank">jQuery</a></strong>.</p>
<p>Here&#8217;s the <a href="http://bugs.jquery.com/ticket/9823" target="_blank">support ticket</a> from their change log.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/random-ie8-crashes-this-tab-has-been-recovered/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>JW Player for WordPress &#8211; Playlist Not Displaying</title>
		<link>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/</link>
		<comments>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 16:17:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=463</guid>
		<description><![CDATA[JW Player for WordPress is a great little solution to locally house and present your videos. However, I recently had an issue where my playlist for JW Player would not display. I could see that it was loading and pulling &#8230; <a href="http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>JW Player for WordPress</strong> is a great little solution to locally house and present your videos. However, I recently had an issue where my playlist for JW Player would not display. I could see that it was loading and pulling in the list of videos, but even with my Advanced Settings being correct it still wouldn&#8217;t show.</p>
<p><img style="border: 2px solid #ccc;" class="size-full wp-image-473" title="JW Player Settings" src="http://robspangler.com/wp-content/uploads/2011/10/jw-settings.png" alt="" width="597" height="304" /></p>
<p>With some help from <strong>LongTail Video Support</strong> (thank you!) I found a solution.</p>
<p>It turns out that sometimes the config attributes for the playlist are not carried over. So, you can force them in your [jwplayer] shortcode attributes.</p>
<p>Here&#8217;s some sample code to show you what I&#8217;m talking about.</p>
<p>Original:</p>
<pre class="brush: plain; title: ; notranslate">[jwplayer playlistid=&quot;123&quot;]</pre>
<p>Updated:</p>
<pre class="brush: plain; title: ; notranslate">[jwplayer playlistid=&quot;123&quot; playlist.position=&quot;bottom&quot; playlist.size=&quot;250&quot;]</pre>
<p>The key attributes being &#8220;<strong>playlist.position</strong>&#8221; and &#8220;<strong>playlist.size</strong>&#8221; I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/jw-player-wordpress-playlist-not-displaying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery .load() Doesn&#8217;t Work in Chrome</title>
		<link>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/</link>
		<comments>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 16:31:43 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=436</guid>
		<description><![CDATA[If you do any front-end development locally (and test in Google Chrome) you may have run into a problem using the .load() function or other AJAX requests. The functions are just unable to return any data, It boils down to &#8230; <a href="http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you do any front-end development locally (and test in Google Chrome) you may have run into a problem using the .load() function or other AJAX requests. The functions are just unable to return any data, It boils down to a permissions issue with Chrome pointing to local files.</p>
<p>You can resolve this by uploading your files to a live production server, but that is a pain, especially if you&#8217;re still in development.</p>
<p><strong>There&#8217;s a very simple solution:</strong></p>
<p>1. Close Chrome completely<br />
2. Launch Chrome from Terminal with the &#8220;&#8211;allow-file-access-from-files&#8221; argument</p>
<pre class="brush: plain; title: ; notranslate">open /Applications/Google\ Chrome.app --args --allow-file-access-from-files</pre>
<p>This will allow that session of Chrome to access local files. Note: Once you close and reopen the application you&#8217;ll no longer have access to local files again.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/jquery-load-doesnt-work-in-chrome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>An Introvert&#8217;s Guide to Freelancing</title>
		<link>http://robspangler.com/blog/introverts-guide-to-freelancing/</link>
		<comments>http://robspangler.com/blog/introverts-guide-to-freelancing/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 16:43:31 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=392</guid>
		<description><![CDATA[Early last year I took my freelancing full-time. This was a big move; I&#8217;m not the: &#8220;let&#8217;s play some golf together, see you at the after-party, and let&#8217;s take this show to the moon!&#8221; type entrepreneur. Like many creative people, I&#8217;m &#8230; <a href="http://robspangler.com/blog/introverts-guide-to-freelancing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Early last year I took my freelancing full-time. This was a big move; I&#8217;m not the: &#8220;let&#8217;s play some golf together, see you at the after-party, and let&#8217;s take this show to the moon!&#8221; type entrepreneur. Like many creative people, I&#8217;m an introvert. I dwell in my own thoughts too long, constantly play scenarios in my mind, and enjoy a nap after long networking events.</p>
<p>A freelancer is not just a designer or developer, you have a few new roles now like sales, accounting and customer service. Introverts have to work a bit differently than our outgoing counterparts. So here are some helpful tips for freelancing and keeping the business going.<span id="more-392"></span></p>
<h2>&#8220;Sir, Would You Like to Buy These Pixels?&#8221;</h2>
<p>Our biggest hurdle is sales.</p>
<p><strong>We don&#8217;t typically make good salesmen</strong>, but we can use this to our advantage. People who are serious about getting results are less interested in getting sold to and more interested in what you have to offer. Spend some time and go through your own resume, why are you qualified? Did you get results for clients at your last job? Talk about it, especially if it&#8217;s a well-known client. Be real and don&#8217;t fake it trying to sound like Joe Schmoozer, because it will show!</p>
<p>Build partnerships. Lets face it, even if we hold to the advice above, <strong>our cold calling skills aren&#8217;t going to win us a lot of business</strong>. We sound awkward, and we&#8217;re not good at holding conversations about the weather or the Dallas Cowboys. Get some friends that compliment your services. If you&#8217;re a designer start getting in touch with some development agencies (and vice versa). Even if you have to offer a discounted partner rate (and you should) partnerships will be keeping your lights on.</p>
<p><strong>Keep a great portfolio</strong>. I won&#8217;t spend time on this because it&#8217;s obvious, but the point should be made that our work is what&#8217;s going to sell what we do.</p>
<p>Take GOOD care of your clients. Your business is going to be made up of a lot of <strong>referrals and repeat customers</strong>. This is a good thing. Referral projects and projects for repeat customers cost us no advertising or sales dollars. Be sure to <strong>hook your clients up with a freebie here and there</strong>, and if you close a referral they send, give your referring client a gift or work in a cut of the profit.</p>
<h2>&#8220;Where Does This Decimal Go?&#8221;</h2>
<p>This really isn’t just a tip for introverts… but don&#8217;t be afraid to get professional help. Don&#8217;t mess around and get yourself in trouble with the IRS, <strong>find a good accountant to take care of your taxes</strong>. There are a lot of invoicing and accounting software packages that will help you out as well. Definitely check out <a href="http://try.hrv.st/2dep">Harvest</a>, <a href="http://www.freshbooks.com/">FreshBooks</a> and <a href="http://quickbooks.intuit.com/">QuickBooks</a> to name a few.</p>
<p>Keep yourself accountable and don&#8217;t let the freedom get the best of you! Since you no longer have a manager breathing down your neck,<strong> you’re going to need some goals</strong>. Use time-tracking software to make sure you&#8217;re still working a solid workday. Check out <a href="http://www.getharvest.com/">Harvest</a>, <a href="http://www.freshbooks.com/">FreshBooks</a> and <a href="http://basecamphq.com/">Basecamp</a> to name a few.</p>
<h2>&#8220;The Phone Keeps Shaking, and So Do I&#8221;</h2>
<p>Being a business owner you&#8217;re going to feel that need to always be connected. Do yourself a favor, <strong>turn off email notifications after business hours</strong> and give social media a break. Sure you can still check it when necessary to make sure the sky is still in place. But let&#8217;s be real, we&#8217;re quickly drained by a lot of social activity, I think this still applies on the digital world. Give yourself some time to enjoy peace and quiet. If you feel the phone shake, you&#8217;re going to check it and too much connectivity <a href="http://www.nytimes.com/2010/08/25/technology/25brain.html">can be dangerous</a>.</p>
<h2>To Conclude&#8230;</h2>
<p>There will always be ups and downs, but that&#8217;s the recipe for any good adventure. Above all things mentioned in this article, the best advice is to use what some consider to be downsides as an advantage. What you lack is networking skills make up for in solid client relationships, what you lack in sales make up for with building trust with partners and existing clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/introverts-guide-to-freelancing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Website Refresh</title>
		<link>http://robspangler.com/blog/website-refresh/</link>
		<comments>http://robspangler.com/blog/website-refresh/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 01:39:43 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://robspangler.com/?p=377</guid>
		<description><![CDATA[Okay, so I redesign my site more than I blog on it. Designing something for yourself is tough, but I&#8217;m really happy with this one. I hope you enjoy. Let me know if you need anything!]]></description>
			<content:encoded><![CDATA[<p>Okay, so I redesign my site more than I blog on it. Designing something for yourself is tough, but I&#8217;m really happy with this one. I hope you enjoy.</p>
<p>Let me know if you need anything!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/website-refresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New Job</title>
		<link>http://robspangler.com/blog/my-new-job/</link>
		<comments>http://robspangler.com/blog/my-new-job/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 12:11:17 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=332</guid>
		<description><![CDATA[In case you didn&#8217;t know I switched jobs. I am now a full-time freelancer and owner of Emerge Web Studio. I&#8217;m into my second week now and things are going great, I&#8217;ve had a ton of great phone calls and &#8230; <a href="http://robspangler.com/blog/my-new-job/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In case you didn&#8217;t know I switched jobs. I am now a <strong>full-time freelancer and owner of <a href="http://emergewebstudio.com/">Emerge Web Studio</a></strong>. I&#8217;m into my second week now and things are going great, I&#8217;ve had a ton of great phone calls and meetings. Waking up for work has become really exciting. With all that being said, I look forward to showing you all the great things I&#8217;m doing.</p>
<p><a href="http://emergewebstudio.com/"><img class="aligncenter size-full wp-image-337" src="/wp-content/uploads/2010/05/emerge-logo.jpg" alt="Emerge Web Studio" /></a></p>
<p><strong>Now it&#8217;s time to sell you&#8230;</strong><br />
Emerge specializes in attractive website design for businesses, developers and agencies. I know the web really well, so as a standard my sites are always easy to update, optimized for search, and ready to promote your business (as long as it&#8217;s not shady).</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/my-new-job/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 Doctype Template</title>
		<link>http://robspangler.com/blog/html5-doctype-template/</link>
		<comments>http://robspangler.com/blog/html5-doctype-template/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:39:58 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=286</guid>
		<description><![CDATA[There&#8217;s no reason to read any further, use HTML5 Boilerplate instead! It is finally time to start switching to HTML5 for projects moving forward. If you&#8217;ve been following the progress you already know that xHTML will eventually be outdated and &#8230; <a href="http://robspangler.com/blog/html5-doctype-template/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p class="notice">There&#8217;s no reason to read any further, use <a href="http://html5boilerplate.com/" rel="external">HTML5 Boilerplate</a> instead!</p>
<p>It is finally time to start switching to HTML5 for projects moving forward. If you&#8217;ve been following the progress you already know that xHTML will <em>eventually</em> be outdated and browsers will, <em>eventually</em>, support HTML5 functionality. So it doesn&#8217;t make sense to continue with xHTML; plus, now our clients to use HTML5 functionality as it becomes available without too many headaches.</p>
<p>Below basic doctype template I&#8217;m starting out with, please feel free to give me feedback.<br />
<span id="more-286"></span></p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;&lt;/title&gt;
  &lt;meta name=&quot;description&quot; content=&quot;&quot; /&gt;
  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
  &lt;link rel=&quot;shortcut icon&quot; href=&quot;favicon.ico&quot; type=&quot;image/x-icon&quot; /&gt;
  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; /&gt;
  &lt;script src=&quot;js/jquery.min.js&quot;&gt;&lt;/script&gt;
  &lt;!--[if lt IE 8]&gt;
  &lt;![endif]--&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>Note: I included a holder for JQuery and and IE specific stylesheet (just in case). These can obviously be removed if they&#8217;re not needed for the project.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/html5-doctype-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Intelligent Conversation</title>
		<link>http://robspangler.com/blog/intelligent-conversation/</link>
		<comments>http://robspangler.com/blog/intelligent-conversation/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 04:30:42 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=278</guid>
		<description><![CDATA[Does anyone else enjoy a good laugh? I do, I do a lot. Laughter can get me through the day sometimes. I have some hilarious co-workers. There is joy wrapped up in laughing together, a deeper connection beyond agreeing that &#8230; <a href="http://robspangler.com/blog/intelligent-conversation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Does anyone else enjoy a good laugh? I do, I do a lot. Laughter can get me through the day sometimes. I have some hilarious co-workers. There is joy wrapped up in laughing together, a deeper connection beyond agreeing that body sounds are funny.<br />
<span id="more-278"></span><br />
On the other side, what happened to deep intelligent conversation? The kind where you just want to take a seat on the couch together with a cup of joe (or tea). In a world of 140 character messages I fear that we&#8217;ve (I&#8217;ve) traded deep meaningful conversation for effortless shouts. We don&#8217;t allow for our perspectives to be changed, only voiced.</p>
<p>With that being said, we should take some time and talk about life over coffee. No phone calls, no texts, no tweets.</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/intelligent-conversation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A New Look</title>
		<link>http://robspangler.com/blog/a-new-look/</link>
		<comments>http://robspangler.com/blog/a-new-look/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 02:13:15 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=246</guid>
		<description><![CDATA[Fresh new redesign! The last design was probably not as thought out as it needed to be. It placed a heavy emphasis on my blog, and let&#8217;s be real, i&#8217;m not blogging every day. This one is supposed to put &#8230; <a href="http://robspangler.com/blog/a-new-look/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Fresh new redesign! The last design was probably not as thought out as it needed to be. It placed a heavy emphasis on my blog, and let&#8217;s be real, i&#8217;m not blogging every day. This one is supposed to put more emphasis on my work, and still a little on the blog&#8230;</p>
<p>Thanks for checking it out, hope you enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/a-new-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Web Design Resources I Couldn’t Live Without (Honestly!)</title>
		<link>http://robspangler.com/blog/8-web-design-resources-cant-live-without/</link>
		<comments>http://robspangler.com/blog/8-web-design-resources-cant-live-without/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 02:50:16 +0000</pubDate>
		<dc:creator>Rob</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.robspangler.com/?p=191</guid>
		<description><![CDATA[Ok, so the “10 ___’s that will save your life!” posts can be annoying. Hopefully you can get some use out of this post; these are the web resources that I honestly use all of the time. No Filler! They &#8230; <a href="http://robspangler.com/blog/8-web-design-resources-cant-live-without/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ok, so the “10 ___’s that will save your life!” posts <em>can</em> be annoying. Hopefully you can get some use out of this post; these are the web resources that I honestly use all of the time. No Filler! They are ordered by how well they’re know (least to most known).<br />
<span id="more-191"></span></p>
<h2>1. Web Template</h2>
<p>I typically use either a 12 or a 16 column grid on most of my designs. I also need to see what it will look like in 800&#215;600 and 1024&#215;768, so I basically just created a nice little .PSD file that includes all of my necessities in an overlay folder at the top of my document. It helps to get my design going on the right foot (after planning, research and sketches of course!). For the grid system I’m using overlays from <a href="http://960.gs">960.gs</a>.</p>
<p><img src="http://www.robspangler.com/wp-content/uploads/2009/09/webtemplate.jpg" alt="Web Template" title="Web Template" width="600" height="90" class="aligncenter size-full wp-image-218" /></p>
<p><a class="action" href="/downloads/web-template.zip">Download the Web Template (.zip)</a></p>
<h2>2. The Viget Photoshop Color Fix</h2>
<p>Have you ever sliced out an image and the colors are slightly different from what you saw on your .psd? Photoshop does this horrible thing where <em>it changes how you see your colors in Photoshop window to match your monitor</em>. This is unacceptable for the web! Make sure you run this fix to ensure that your colors come out right.</p>
<p><img class="size-full wp-image-195" title="Viget" src="http://www.robspangler.com/wp-content/uploads/2009/09/viget.jpg" alt="Viget" width="600" height="90" /></p>
<p><a class="action" href="http://www.viget.com/inspire/the-mysterious-save-for-web-color-shift/">Read the Blog Post</a></p>
<h2>3. IETester</h2>
<p>We all hate IE, but we all still need to make sure that our visitors and clients don’t hate us (because you know they all use it!). The difficult thing about designing for IE is that you can only have one version of it installed on your PC; unless… you don’t have 3 virtual PCs running do you? That’s a shame, because IETester gives you the ability to open a different version of IE in separate tabs (from 5.5 to 8).</p>
<p><img class="aligncenter size-full wp-image-201" title="ietester" src="http://www.robspangler.com/wp-content/uploads/2009/09/ietester.jpg" alt="IETester" width="600" height="90" /></p>
<p><a class="action" href="http://www.my-debugbar.com/wiki/IETester/HomePage">Get IETester</a></p>
<h2>4. AutoPopulate</h2>
<p>This was originally developed by <a href="http://www.456bereastreet.com/archive/200710/autopopulating_text_input_fields_with_javascript/">Roger Johansson</a> and basically auto-populates your input field with instructions (ex: “Enter Your Search Term Here”) but it still keeps your fields accessible by doing it using the title attribute. I’m a big fan of JQuery, and so is my friend <a href="http://theandystratton.com/">Andy Stratton</a>, so he created <a href="http://theandystratton.com/2009/jquery-populate-plugin-accessibly-auto-populate-text-inputs-with-ease/">a great plugin for it</a>.</p>
<p><a class="action" href="http://theandystratton.com/2009/jquery-populate-plugin-accessibly-auto-populate-text-inputs-with-ease">Get JQuery Populate Plugin</a></p>
<h2>5. JQuery UI</h2>
<p>Ok, JQuery is an awesome hotdog, and JQuery UI is all the relish, mustard and ketchup. JQuery UI allows you to easily create a datepicker, a slider, a dialog box…, or even make elements resizable. I find myself using the tabs more than anything.</p>
<p><img src="http://www.robspangler.com/wp-content/uploads/2009/09/uitabs.jpg" alt="JQuery UI" title="JQuery UI" width="600" height="90" class="aligncenter size-full wp-image-203" /></p>
<p><a class="action" href="http://www.jqueryui.com/">Get JQuery UI</a></p>
<h2>6. FireBug</h2>
<p>If you’re a web designer, you probably already know what this is all about and you can skip to the next one. FireBug has saved me countless hours in my CSS, it allows you to inspect and alter live CSS on any site. This is great if you’re fixing an issue on a website that has already been integrated into a complex CMS (e.g. Ektron!).</p>
<p><img src="http://www.robspangler.com/wp-content/uploads/2009/09/firebug.jpg" alt="FireBug" title="FireBug" width="600" height="90" class="aligncenter size-full wp-image-204" /></p>
<p><a class="action" href="http://getfirebug.com/">Get FireBug</a></p>
<h2>7. SwfObject</h2>
<p>There are a couple good solutions out there for flash replacement, but I stick with SwfObject because it never lets me down and it’s not complicated. It basically allows you to add your flash file in an accessible way by providing alternate content for people without the Adobe Flash Player.</p>
<p><a class="action" href="http://code.google.com/p/swfobject/">Get SwfObject</a></p>
<h2>8. sIFR</h2>
<p>I have a love/hate relationship with sIFR. I always seem to have to tweak the heck out of it to really get it doing what I want, but it is still the best font-replacement tool out there.</p>
<p><a class="action" href="http://www.mikeindustries.com/blog/sifr/">Get sIFR</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robspangler.com/blog/8-web-design-resources-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (User agent is rejected)
Database Caching 17/26 queries in 0.220 seconds using disk: basic

Served from: robspangler.com @ 2012-05-18 12:27:30 -->
