<?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>Jude Hansen &#187; Backside</title>
	<atom:link href="http://judehansen.com/category/bs/feed/" rel="self" type="application/rss+xml" />
	<link>http://judehansen.com</link>
	<description></description>
	<lastBuildDate>Fri, 10 Jun 2011 05:36:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Become a Qualified Analytics Wiz</title>
		<link>http://judehansen.com/2009/03/become-a-qualified-analytics-wiz/</link>
		<comments>http://judehansen.com/2009/03/become-a-qualified-analytics-wiz/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 05:33:23 +0000</pubDate>
		<dc:creator>Jude</dc:creator>
				<category><![CDATA[Backside]]></category>

		<guid isPermaLink="false">http://judehansen.com/?p=24</guid>
		<description><![CDATA[Google is providing a crash course of sorts for Google Analytics. After completing the video series (or before, whenever) you can purchase and take a test to be recognized as a person who understands GA.]]></description>
			<content:encoded><![CDATA[<p>Google is providing a <a href="http://www.google.com/support/conversionuniversity/" target="_blank">crash course of sorts for Google Analytics</a>. After completing the video series (or before, whenever) you can purchase and take a test to be recognized as a person who understands GA.</p>
]]></content:encoded>
			<wfw:commentRss>http://judehansen.com/2009/03/become-a-qualified-analytics-wiz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Content Size vs. Window Size</title>
		<link>http://judehansen.com/2009/02/content-size-vs-window-size/</link>
		<comments>http://judehansen.com/2009/02/content-size-vs-window-size/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 15:56:29 +0000</pubDate>
		<dc:creator>Jude</dc:creator>
				<category><![CDATA[Backside]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://judehansen.com/?p=7</guid>
		<description><![CDATA[A bit of javascript and jquery to compare the height of the page content vs. the height of the window. In this case, I&#8217;m adding a class to another class if the content is shorter. // if the content of &#8230; <a href="http://judehansen.com/2009/02/content-size-vs-window-size/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A bit of javascript and jquery to compare the height of the page content vs. the height of the window. In this case, I&#8217;m adding a class to another class if the content is shorter.</p>
<p><code><br />
// if the content of the page is less than the height of the window...<br />
if (document.body.scrollHeight &lt; document.documentElement.clientHeight)<br />
{<br />
$(".foot-wrap").addClass("shortpage");<br />
}</code></p>
<p>update: I had to change it from comparing the body.scrollHeight to a just a class on the page. Google Chrome would considered the body height the same as the client height if it was shorter. Here&#8217;s what I used.</p>
<p><code><br />
// if the content of the page is less than the height of the window...<br />
	if (document.getElementsByClassName('container')[0].scrollHeight < document.documentElement.clientHeight)<br />
	{<br />
		$(".foot-wrap").addClass("shortpage");<br />
	}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://judehansen.com/2009/02/content-size-vs-window-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Details details</title>
		<link>http://judehansen.com/2009/02/5/</link>
		<comments>http://judehansen.com/2009/02/5/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 20:14:10 +0000</pubDate>
		<dc:creator>Jude</dc:creator>
				<category><![CDATA[Backside]]></category>
		<category><![CDATA[reference]]></category>

		<guid isPermaLink="false">http://judehansen.com/?p=5</guid>
		<description><![CDATA[Nice article from Kevin Potts about minding the details. I myself must aspire to better cover all bases. As a designer, I want to be unappreciated for all the right reasons.]]></description>
			<content:encoded><![CDATA[<p>Nice article from Kevin Potts about <a href="http://www.alistapart.com/articles/thedetailsthatmatter" target="_blank">minding the details</a>. I myself must aspire to better cover all bases. As a designer, I want to be unappreciated for all the right reasons.</p>
]]></content:encoded>
			<wfw:commentRss>http://judehansen.com/2009/02/5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

