<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>cfPadawan.com - JavaScript</title>
			<link>http://www.cfpadawan.com/index.cfm</link>
			<description>cfPadawan.com</description>
			<language>en-us</language>
			<pubDate>Sun, 05 Sep 2010 13:09:21 -0500</pubDate>
			<lastBuildDate>Thu, 29 Apr 2010 17:46:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>andy@cfpadawan.com</managingEditor>
			<webMaster>andy@cfpadawan.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>andy@cfpadawan.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Get the most out of the JavaScript arguments object</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/4/29/Get-the-most-out-of-the-JavaScript-arguments-object</link>
				<description>
				
				So if you&apos;re a CF&apos;er who has doubled down on AJAX then you really should take a minute to get to know the JavaScript &lt;strong&gt;arguments&lt;/strong&gt; object.  [More]
				</description>
				
				<category>AJAX</category>
				
				<category>JavaScript</category>
				
				<pubDate>Thu, 29 Apr 2010 17:46:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/4/29/Get-the-most-out-of-the-JavaScript-arguments-object</guid>
				
				
			</item>
			
			<item>
				<title>MASS EFFECT checkboxes with jQuery and CF!</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/4/12/MASS EFFECT checkboxes with jQuery and CF!</link>
				<description>
				
				If you&apos;ve struggled with emulating GMail or Yahoo style Select All functionality for tabular forms and you&apos;re in love (or just curious) about jQuery and ColdFusion then this post is for you!  If you love MASS EFFECT and you just want to see where someone has come up with a legitimate reason to use the words MASS EFFECT in code then this post if for you too!  [More]
				</description>
				
				<category>jQuery</category>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<pubDate>Mon, 12 Apr 2010 17:20:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/4/12/MASS EFFECT checkboxes with jQuery and CF!</guid>
				
				
			</item>
			
			<item>
				<title>A stupid JavaScript mistake...</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/4/7/A-stupid-JavaScript-mistake</link>
				<description>
				
				Have you ever spent an hour on something that was so simple that upon solving it you wonder how you possess enough brain power to have ever learned to write a simple statement?  Well I did and I&apos;m writing this entry for anyone else who has ever felt like they should be immediately de-rezzed!  Yeah - I just went TRON on you...  [More]
				</description>
				
				<category>jQuery</category>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<pubDate>Wed, 07 Apr 2010 15:01:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/4/7/A-stupid-JavaScript-mistake</guid>
				
				
			</item>
			
			<item>
				<title>JavaScript Fall Through Switch Statements</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/3/17/JavaScript-Fall-Through-Switch-Statements</link>
				<description>
				
				Someone recently asked me if it were possible to easily execute the same code for two or more possible case values in a JavaScript switch statement.  [More]
				</description>
				
				<category>jQuery</category>
				
				<category>jQuery UI</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<category>AJAX</category>
				
				<pubDate>Wed, 17 Mar 2010 18:17:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/3/17/JavaScript-Fall-Through-Switch-Statements</guid>
				
				
			</item>
			
			<item>
				<title>Dynamically Changing jQuery UI Accordion Tab Headings</title>
				<link>http://www.cfpadawan.com/index.cfm/2010/2/17/Dynamically-Changing-jQuery-UI-Tab-Headings</link>
				<description>
				
				If you&apos;re into using jQuery UI (and who&apos;s not?) then this is an easy way to change the heading of a jQuery accordion tab style heading to reflect user focus.  [More]
				</description>
				
				<category>jQuery</category>
				
				<category>jQuery UI</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<category>AJAX</category>
				
				<pubDate>Wed, 17 Feb 2010 13:50:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2010/2/17/Dynamically-Changing-jQuery-UI-Tab-Headings</guid>
				
				
			</item>
			
			<item>
				<title>Using CFAJAXPROXY to Check Yourself Before You Wreck Yourself!</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/9/11/Using-CFAJAXPROXY-to-Check-Yourself-Before-You-Wreck-Yourself</link>
				<description>
				
				Many web apps that are used for CRUD activities (INSERT, UPDATE and DELETE statements) employ tables that simply have what is often referred to as a manufactured key.  Most people more commonly know this as an auto-increment or auto-numbered identity style of primary key and it is typically stored as a data type that&apos;s an integer of some sort.  This is great until you&apos;re working on something a bit bigger, say a business app, and you want the key to a subsidiary table to hold meaning to the end user throughout the app.  Perhaps you&apos;re setting up location codes or category codes for instance, the value 5 will probably not mean a lot to an end user when filtering inventory reports by location code and it unfortunately forces the user to perform mental lookups to remember that 5 truly means a location of &apos;Chicago&apos;.

So let&apos;s say that you make the decision to structure lookup tables using user defined key values - would you know how to use CF to help maintain referential integrity in your database while not endlessly frustrating your end users?  [More]
				</description>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<category>RDBMS</category>
				
				<pubDate>Fri, 11 Sep 2009 11:37:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/9/11/Using-CFAJAXPROXY-to-Check-Yourself-Before-You-Wreck-Yourself</guid>
				
				
			</item>
			
			<item>
				<title>Using CF and AJAX to dynamically show and hide divs based on database values</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/9/4/Using-CF-and-AJAX-to-dynamically-show-and-hide-divs-based-on-database-values</link>
				<description>
				
				Showing and hiding form and document elements on a page can be pretty useful when you&apos;re trying to walk a user through a process and you only want them to interact with controls that are geared towards to the task at hand.  [More]
				</description>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<pubDate>Fri, 04 Sep 2009 13:48:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/9/4/Using-CF-and-AJAX-to-dynamically-show-and-hide-divs-based-on-database-values</guid>
				
				
			</item>
			
			<item>
				<title>Delivering Event Driven Notifications to Users with AJAX</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/8/30/Delivering-Event-Driven-Notifications-to-Users-with-AJAX</link>
				<description>
				
				Have you ever wanted to notify a group of users that an event has taken place using a cfwindow or some other type of alert?  Well here&apos;s a way!  [More]
				</description>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<pubDate>Sun, 30 Aug 2009 00:01:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/8/30/Delivering-Event-Driven-Notifications-to-Users-with-AJAX</guid>
				
				
			</item>
			
			<item>
				<title>A quick and easy way to customize ColdFusion&apos;s default loading message for cfdivs and cflayoutareas.</title>
				<link>http://www.cfpadawan.com/index.cfm/2009/8/29/A-quick-and-easy-way-to-customize-ColdFusions-default-loading-message-for-cfdivs-and-cflayoutareas</link>
				<description>
				
				Have you ever wanted to juice up or possibly hide the default loading message for your cfdivs or cflayoutareas?  [More]
				</description>
				
				<category>AJAX</category>
				
				<category>ColdFusion</category>
				
				<category>JavaScript</category>
				
				<pubDate>Sat, 29 Aug 2009 18:10:00 -0500</pubDate>
				<guid>http://www.cfpadawan.com/index.cfm/2009/8/29/A-quick-and-easy-way-to-customize-ColdFusions-default-loading-message-for-cfdivs-and-cflayoutareas</guid>
				
				
			</item>
			</channel></rss>