<?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: Dynamic Grid Layout In JavaScript</title>
	<atom:link href="http://www.zackgrossbart.com/hackito/jsgrid/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zackgrossbart.com/hackito/jsgrid/</link>
	<description></description>
	<lastBuildDate>Thu, 18 Mar 2010 21:13:15 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Zack Grossbart</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-9943</link>
		<dc:creator>Zack Grossbart</dc:creator>
		<pubDate>Sun, 21 Feb 2010 15:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-9943</guid>
		<description>It should be possible to make the grid work vertically, just change the loop in the alignGrid function.  Elements with different heights is a little trickier.  You would probably be better off having every grid square the same height and then changing the height of the stuff inside the square.</description>
		<content:encoded><![CDATA[<p>It should be possible to make the grid work vertically, just change the loop in the alignGrid function.  Elements with different heights is a little trickier.  You would probably be better off having every grid square the same height and then changing the height of the stuff inside the square.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-9942</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sun, 21 Feb 2010 15:29:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-9942</guid>
		<description>Sorry, I forgot:

what about elements with different heights ? Can be integrated such functionality with this code ?</description>
		<content:encoded><![CDATA[<p>Sorry, I forgot:</p>
<p>what about elements with different heights ? Can be integrated such functionality with this code ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-9941</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Sun, 21 Feb 2010 15:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-9941</guid>
		<description>really cool,

would be possible to distribute the elements vertically and not horizontally ?
I mean
1   3
2   4

thanks</description>
		<content:encoded><![CDATA[<p>really cool,</p>
<p>would be possible to distribute the elements vertically and not horizontally ?<br />
I mean<br />
1   3<br />
2   4</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-6208</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 04 Nov 2009 17:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-6208</guid>
		<description>Really nice, thanks for sharing :)</description>
		<content:encoded><![CDATA[<p>Really nice, thanks for sharing <img src='http://www.zackgrossbart.com/hackito/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zack Grossbart</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-2810</link>
		<dc:creator>Zack Grossbart</dc:creator>
		<pubDate>Thu, 30 Jul 2009 19:45:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-2810</guid>
		<description>Ricardo,

Thank you for your comment and your code suggestions.  I used the full JQuery string instead of $ because I wanted to make this sample code more readable.  I did the CSS as separate calls for the same reason.  However, I should definitely change the deployed code at &lt;a href=&quot;http://www.gettheeye.com&quot; rel=&quot;nofollow&quot;&gt;Get The Eye&lt;/a&gt; to combine the CSS calls.

Thanks,
Zacl</description>
		<content:encoded><![CDATA[<p>Ricardo,</p>
<p>Thank you for your comment and your code suggestions.  I used the full JQuery string instead of $ because I wanted to make this sample code more readable.  I did the CSS as separate calls for the same reason.  However, I should definitely change the deployed code at <a href="http://www.gettheeye.com" rel="nofollow">Get The Eye</a> to combine the CSS calls.</p>
<p>Thanks,<br />
Zacl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo</title>
		<link>http://www.zackgrossbart.com/hackito/jsgrid/#comment-2809</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Thu, 30 Jul 2009 19:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.zackgrossbart.com/hackito/?p=206#comment-2809</guid>
		<description>Works great!

Your CSS calls could benefit from some leaner syntax, instead of a load of jQuery(this).css(&quot;&quot;,&quot;&quot;) use object notation:


jQuery(this).css({
    width: cellWidth + &quot;em&quot;,
    height: cellHeight + &quot;em&quot;,
    position: &quot;absolute&quot;
});


And consider wrapping all your code in an anonymous function so you can alias &#039;$&#039; for jQuery safely: http://docs.jquery.com/Using_jQuery_with_Other_Libraries#Referencing_Magic_-_Shortcuts_for_jQuery

cheers!</description>
		<content:encoded><![CDATA[<p>Works great!</p>
<p>Your CSS calls could benefit from some leaner syntax, instead of a load of jQuery(this).css(&#8220;&#8221;,&#8221;") use object notation:</p>
<p>jQuery(this).css({<br />
    width: cellWidth + &#8220;em&#8221;,<br />
    height: cellHeight + &#8220;em&#8221;,<br />
    position: &#8220;absolute&#8221;<br />
});</p>
<p>And consider wrapping all your code in an anonymous function so you can alias &#8216;$&#8217; for jQuery safely: <a href="http://docs.jquery.com/Using_jQuery_with_Other_Libraries#Referencing_Magic_-_Shortcuts_for_jQuery" rel="nofollow">http://docs.jquery.com/Using_jQuery_with_Other_Libraries#Referencing_Magic_-_Shortcuts_for_jQuery</a></p>
<p>cheers!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
