<?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: Equal Height Columns with JavaScript (Full Version)</title>
	<atom:link href="http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/</link>
	<description>Web Design Articles &#38; Tutorials. To make the web impressive.</description>
	<lastBuildDate>Tue, 07 Feb 2012 20:16:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jason Neaves</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-6541</link>
		<dc:creator>Jason Neaves</dc:creator>
		<pubDate>Tue, 17 Aug 2010 01:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-6541</guid>
		<description>This script does not like CSS styles. i.e. Changing the boarder styles will cause the jquery to fail in IE7&amp;8:o(</description>
		<content:encoded><![CDATA[<p>This script does not like CSS styles. i.e. Changing the boarder styles will cause the jquery to fail in IE7&amp;8:o(</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louis Lazaris</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1467</link>
		<dc:creator>Louis Lazaris</dc:creator>
		<pubDate>Mon, 15 Mar 2010 21:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1467</guid>
		<description>Ah, I see what you mean now. Using ems for the padding does cause JS errors in IE6 and IE7, but IE8 seems to be working fine. I had completely forgotten about changing the padding, it&#039;s been a while since I wrote this script.

Interesting. Well, I&#039;m not sure if it&#039;s worth updating, considering both those browsers are on the way out, but thanks for the heads up, which should help users avoid using ems on the padding values (which I think is rare anyhow, no?).</description>
		<content:encoded><![CDATA[<p>Ah, I see what you mean now. Using ems for the padding does cause JS errors in IE6 and IE7, but IE8 seems to be working fine. I had completely forgotten about changing the padding, it&#8217;s been a while since I wrote this script.</p>
<p>Interesting. Well, I&#8217;m not sure if it&#8217;s worth updating, considering both those browsers are on the way out, but thanks for the heads up, which should help users avoid using ems on the padding values (which I think is rare anyhow, no?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael Hansson</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1466</link>
		<dc:creator>Mikael Hansson</dc:creator>
		<pubDate>Mon, 15 Mar 2010 20:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1466</guid>
		<description>Sorry, it was in IE7...</description>
		<content:encoded><![CDATA[<p>Sorry, it was in IE7&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael Hansson</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1465</link>
		<dc:creator>Mikael Hansson</dc:creator>
		<pubDate>Mon, 15 Mar 2010 20:00:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1465</guid>
		<description>Did you try with padding set in ems?
I only tried IE8, but an alert of the retrieved value from a div with a top padding of 0.5em with

document.defaultView.getComputedStyle(element, null)[&quot;paddingTop&quot;]

returned just the string &quot;0.5em&quot;, which if I&#039;m thinking correctly, would be hard to match to pixelheights.

What I meant with the &quot;cascade&quot; was that if a value is not set in either an external css, inline style or element style it seemed that IE returned some strange value as an alert of

document.defaultView.getComputedStyle(element, null)[&quot;borderTopWidth&quot;]

returned &quot;medium&quot;...

I&#039;m on XP btw...</description>
		<content:encoded><![CDATA[<p>Did you try with padding set in ems?<br />
I only tried IE8, but an alert of the retrieved value from a div with a top padding of 0.5em with</p>
<p>document.defaultView.getComputedStyle(element, null)["paddingTop"]</p>
<p>returned just the string &#8220;0.5em&#8221;, which if I&#8217;m thinking correctly, would be hard to match to pixelheights.</p>
<p>What I meant with the &#8220;cascade&#8221; was that if a value is not set in either an external css, inline style or element style it seemed that IE returned some strange value as an alert of</p>
<p>document.defaultView.getComputedStyle(element, null)["borderTopWidth"]</p>
<p>returned &#8220;medium&#8221;&#8230;</p>
<p>I&#8217;m on XP btw&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Louis Lazaris</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1463</link>
		<dc:creator>Louis Lazaris</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:48:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1463</guid>
		<description>Mikael,

I don&#039;t see any of the problems you&#039;re seeing. I tested in IE6, 7 &amp; 8, and in each case specifying a height in ems for one or both columns works fine.

And I&#039;m not sure what you mean exactly when you say &quot;in any level of the cascade&quot;. The only values that are set are in the CSS. The JavaScript should not be changed. Whatever unit is used, the JS will compute based on pixels, and change accordingly, by pixels only.

If you could clarify the problems you&#039;re having, that would help. Thanks.</description>
		<content:encoded><![CDATA[<p>Mikael,</p>
<p>I don&#8217;t see any of the problems you&#8217;re seeing. I tested in IE6, 7 &#038; 8, and in each case specifying a height in ems for one or both columns works fine.</p>
<p>And I&#8217;m not sure what you mean exactly when you say &#8220;in any level of the cascade&#8221;. The only values that are set are in the CSS. The JavaScript should not be changed. Whatever unit is used, the JS will compute based on pixels, and change accordingly, by pixels only.</p>
<p>If you could clarify the problems you&#8217;re having, that would help. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mikael Hansson</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1451</link>
		<dc:creator>Mikael Hansson</dc:creator>
		<pubDate>Fri, 12 Mar 2010 22:15:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1451</guid>
		<description>I found two issues that caused erratic IE behaviour:

If you have specified a unit in ems, it won&#039;t work as IE returns the original unit, not a computed value. Using &quot;runtimeStyle&quot; might be a solution, though I haven&#039;t tested it, supposed to be a bit buggy.

If a value is not set in any level of the cascade, IE returns something else, don&#039;t know what but when I didn&#039;t have any borders set, computedStyle[&quot;borderTopWidth&quot;] had a value of &quot;medium&quot;.</description>
		<content:encoded><![CDATA[<p>I found two issues that caused erratic IE behaviour:</p>
<p>If you have specified a unit in ems, it won&#8217;t work as IE returns the original unit, not a computed value. Using &#8220;runtimeStyle&#8221; might be a solution, though I haven&#8217;t tested it, supposed to be a bit buggy.</p>
<p>If a value is not set in any level of the cascade, IE returns something else, don&#8217;t know what but when I didn&#8217;t have any borders set, computedStyle["borderTopWidth"] had a value of &#8220;medium&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Equal Height Columns with JavaScript (Full Version)- Avnish Namdev</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-1082</link>
		<dc:creator>Equal Height Columns with JavaScript (Full Version)- Avnish Namdev</dc:creator>
		<pubDate>Fri, 22 Jan 2010 19:41:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-1082</guid>
		<description>[...] And plz download for java script code and complete HTML code for this link http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/ [...]</description>
		<content:encoded><![CDATA[<p>[...] And plz download for java script code and complete HTML code for this link <a href="http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/" rel="nofollow">http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Albarranator</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-885</link>
		<dc:creator>Albarranator</dc:creator>
		<pubDate>Mon, 23 Nov 2009 06:05:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-885</guid>
		<description>I have no words to express my grattitude. It worked great with my site, you actually make my day pal.

Thanks very much.</description>
		<content:encoded><![CDATA[<p>I have no words to express my grattitude. It worked great with my site, you actually make my day pal.</p>
<p>Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Impressive Webs</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-884</link>
		<dc:creator>Impressive Webs</dc:creator>
		<pubDate>Sun, 22 Nov 2009 11:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-884</guid>
		<description>@Sanjay:

I&#039;m not sure why it&#039;s not working for you, but I assure you it works fine in all versions of IE.</description>
		<content:encoded><![CDATA[<p>@Sanjay:</p>
<p>I&#8217;m not sure why it&#8217;s not working for you, but I assure you it works fine in all versions of IE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanjay 128</title>
		<link>http://www.impressivewebs.com/equal-height-columns-with-javascript-full-version/#comment-878</link>
		<dc:creator>Sanjay 128</dc:creator>
		<pubDate>Fri, 20 Nov 2009 07:14:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.impressivewebs.com/?p=65#comment-878</guid>
		<description>Its working fine in Mozilla but in IE7 retrieveComputedStyle()  function is not working properly.</description>
		<content:encoded><![CDATA[<p>Its working fine in Mozilla but in IE7 retrieveComputedStyle()  function is not working properly.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
