<?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>*blog &#187; jquery</title>
	<atom:link href="http://blog.joeygeiger.com/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joeygeiger.com</link>
	<description>solving the world's problems, one at a time</description>
	<lastBuildDate>Fri, 06 Aug 2010 17:18:12 +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>Visual password strength checker for jQuery</title>
		<link>http://blog.joeygeiger.com/2010/01/25/visual-password-strength-checker-for-jquery/</link>
		<comments>http://blog.joeygeiger.com/2010/01/25/visual-password-strength-checker-for-jquery/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 19:29:02 +0000</pubDate>
		<dc:creator>jgeiger</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.joeygeiger.com/?p=151</guid>
		<description><![CDATA[A simple JS file that uses regex to determine the strength of a password. built on the work of http://www.zorched.net/2009/05/08/password-strength-validation-with-regular-expressions/ and http://www.techpint.com/programming/regular-expression-check-password-strength]]></description>
			<content:encoded><![CDATA[<p>A simple JS file that uses regex to determine the strength of a password.</p>
<p><script src="http://gist.github.com/286141.js"></script></p>
<p>built on the work of<br />
<a href="http://www.zorched.net/2009/05/08/password-strength-validation-with-regular-expressions/">http://www.zorched.net/2009/05/08/password-strength-validation-with-regular-expressions/</a><br />
and<br />
<a href="http://www.techpint.com/programming/regular-expression-check-password-strength">http://www.techpint.com/programming/regular-expression-check-password-strength</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joeygeiger.com/2010/01/25/visual-password-strength-checker-for-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery function to set elements to the same height</title>
		<link>http://blog.joeygeiger.com/2009/10/20/jquery-function-to-set-elements-to-the-same-height/</link>
		<comments>http://blog.joeygeiger.com/2009/10/20/jquery-function-to-set-elements-to-the-same-height/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 17:14:27 +0000</pubDate>
		<dc:creator>jgeiger</dc:creator>
				<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.joeygeiger.com/?p=135</guid>
		<description><![CDATA[I was trying to setup some boxes to be the same height using css, and it seemed that eventually one of the boxes had enough content to make the box go into scroll mode. So instead of hard coding the box height, I decided to write a jQuery function to find the tallest one, and [...]]]></description>
			<content:encoded><![CDATA[<p>I was trying to setup some boxes to be the same height using css, and it seemed that eventually one of the boxes had enough content to make the box go into scroll mode. So instead of hard coding the box height, I decided to write a jQuery function to find the tallest one, and set all the boxes to that height.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$.<span style="color: #660066;">fn</span>.<span style="color: #660066;">allMatchTallestHeight</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #003366; font-weight: bold;">var</span> max_height <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
  elements <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  elements.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> max_height<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      max_height <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  elements.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span>max_height<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>So once you have that, you can then use it like this.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.cloud-box-content&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">allMatchTallestHeight</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.joeygeiger.com/2009/10/20/jquery-function-to-set-elements-to-the-same-height/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
