 <?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: Very quick equal-height columns in jQuery</title>
	<atom:link href="http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=very-quick-equal-height-columns-in-jquery</link>
	<description>Thoughts on web development and technologies by Peter Gasston</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:25:08 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Tim</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-38333</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 26 Jun 2010 03:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-38333</guid>
		<description>Great little snippet! Thanks for the help...</description>
		<content:encoded><![CDATA[<p>Great little snippet! Thanks for the help…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-37822</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Mon, 17 May 2010 14:15:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-37822</guid>
		<description>@ Paul Irish: Thank you man! your small function is much better then EqualHeights plugin, I tested in all browsers and your script doesn&#039;t have show any browser bugs.

Perfect, Thank you!</description>
		<content:encoded><![CDATA[<p>@ Paul Irish: Thank you man! your small function is much better then EqualHeights plugin, I tested in all browsers and your script doesn’t have show any browser bugs.</p>
<p>Perfect, Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antoine</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-36018</link>
		<dc:creator>Antoine</dc:creator>
		<pubDate>Sat, 19 Dec 2009 20:29:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-36018</guid>
		<description>I confirm the issue with Chrome using Paul&#039;s function.
However, it is still a must !</description>
		<content:encoded><![CDATA[<p>I confirm the issue with Chrome using Paul’s function.<br />
However, it is still a must !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastien G.</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-35460</link>
		<dc:creator>Sebastien G.</dc:creator>
		<pubDate>Thu, 12 Nov 2009 15:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-35460</guid>
		<description>Well... I&#039;ve tried this method already everything is working fine on IE and Firefox but when I tried it on Google Chrome, everythings seems to worked fine until a refresh (when I browse onto the site everything is fine... only on refresh) the page where I used that snippet. 

Any ideas anyone ?</description>
		<content:encoded><![CDATA[<p>Well… I’ve tried this method already everything is working fine on IE and Firefox but when I tried it on Google Chrome, everythings seems to worked fine until a refresh (when I browse onto the site everything is fine… only on refresh) the page where I used that snippet. </p>
<p>Any ideas anyone ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SohoInteractive</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-28247</link>
		<dc:creator>SohoInteractive</dc:creator>
		<pubDate>Tue, 21 Apr 2009 04:39:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-28247</guid>
		<description>I think this is the simplest solution for equal height dilemma.
I&#039;ll test it on all browsers before give it a &quot;go&quot;

Thanks

K.</description>
		<content:encoded><![CDATA[<p>I think this is the simplest solution for equal height dilemma.<br />
I’ll test it on all browsers before give it a “go”</p>
<p>Thanks</p>
<p>K.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Irish</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-23624</link>
		<dc:creator>Paul Irish</dc:creator>
		<pubDate>Wed, 21 Jan 2009 18:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-23624</guid>
		<description>I wrote and use something pretty similar:
&lt;code&gt;
$.fn.setAllToMaxHeight = function(){
  return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
}

// usage: $(&#039;div.unevenheights&#039;).setAllToMaxHeight()
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I wrote and use something pretty similar:<br />
<code><br />
$.fn.setAllToMaxHeight = function(){<br />
  return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );<br />
}</p>
<p>// usage: $(‘div.unevenheights’).setAllToMaxHeight()<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: icaaq</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-23621</link>
		<dc:creator>icaaq</dc:creator>
		<pubDate>Wed, 21 Jan 2009 18:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-23621</guid>
		<description>Nice 2 line of code snippet :) but isn&#039;t offsetHeight more accurate?

icaaq</description>
		<content:encoded><![CDATA[<p>Nice 2 line of code snippet :) but isn’t offsetHeight more accurate?</p>
<p>icaaq</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Glazebrook</title>
		<link>http://www.broken-links.com/2009/01/20/very-quick-equal-height-columns-in-jquery/#comment-23566</link>
		<dc:creator>Rob Glazebrook</dc:creator>
		<pubDate>Tue, 20 Jan 2009 14:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.broken-links.com/?p=320#comment-23566</guid>
		<description>Excellent work, Peter. And I&#039;d agree... a plugin is useful for those who don&#039;t know jQuery well, or have many elements to adjust, but your two-line solution is impressive and elegant. I&#039;d never thought of using the &#039;max&#039; function... that&#039;d help simplify my stuff significantly. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Excellent work, Peter. And I’d agree… a plugin is useful for those who don’t know jQuery well, or have many elements to adjust, but your two-line solution is impressive and elegant. I’d never thought of using the ‘max’ function… that’d help simplify my stuff significantly. Thanks for sharing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
