<?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>Program &#38; Design &#187; JavaScript</title>
	<atom:link href="http://programanddesign.com/category/js/feed/" rel="self" type="application/rss+xml" />
	<link>http://programanddesign.com</link>
	<description>Tips, tricks, tutorials, and tools on programming &#38; web design</description>
	<lastBuildDate>Wed, 07 Jul 2010 21:55:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>jQuery Select Table Column or Row</title>
		<link>http://programanddesign.com/js/jquery-select-table-column-or-row/</link>
		<comments>http://programanddesign.com/js/jquery-select-table-column-or-row/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 01:37:02 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://programanddesign.com/?p=267</guid>
		<description><![CDATA[Table rows are pretty easy to work as all the td elements are contained within one tr, but how would you grab all the tds in a single column? Why, by using these selectors of course! $.fn.row = function&#40;i&#41; &#123; &#160; &#160; return $&#40;'tr:nth-child('+&#40;i+1&#41;+') td', this&#41;; &#125; $.fn.column = function&#40;i&#41; &#123; &#160; &#160; return $&#40;'tr [...]]]></description>
		<wfw:commentRss>http://programanddesign.com/js/jquery-select-table-column-or-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Human-readable file size in JavaScript</title>
		<link>http://programanddesign.com/js/human-readable-file-size-in-javascript/</link>
		<comments>http://programanddesign.com/js/human-readable-file-size-in-javascript/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 08:08:01 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://programanddesign.com/?p=236</guid>
		<description><![CDATA["size" is in bytes, the rest you should be able to figure out. function readableFileSize&#40;size&#41; &#123; &#160; &#160; var units = &#91;'B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'&#93;; &#160; &#160; var i = 0; &#160; &#160; while&#40;size &#62;= 1024&#41; &#123; &#160; &#160; &#160; &#160; size /= 1024; &#160; &#160; &#160; &#160; ++i; &#160; [...]]]></description>
		<wfw:commentRss>http://programanddesign.com/js/human-readable-file-size-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Select Text Range</title>
		<link>http://programanddesign.com/js/jquery-select-text-range/</link>
		<comments>http://programanddesign.com/js/jquery-select-text-range/#comments</comments>
		<pubDate>Fri, 08 May 2009 18:19:47 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://programanddesign.com/?p=212</guid>
		<description><![CDATA[Here's a jQuery function I wrote which you can use to select a range of text in an input field. $.fn.selectRange = function&#40;start, end&#41; &#123; &#160; &#160; return this.each&#40;function&#40;&#41; &#123; &#160; &#160; &#160; &#160; if&#40;this.setSelectionRange&#41; &#123; &#160; &#160; &#160; &#160; &#160; &#160; this.focus&#40;&#41;; &#160; &#160; &#160; &#160; &#160; &#160; this.setSelectionRange&#40;start, end&#41;; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://programanddesign.com/js/jquery-select-text-range/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
