<?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>techBlog &#187; jQuery</title>
	<atom:link href="http://tech.tjandrawibawa.org/blog/category/jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.tjandrawibawa.org/blog</link>
	<description>SAVE ME FROM UNINDENTED CODES PLEASEEEE</description>
	<lastBuildDate>Wed, 24 Mar 2010 10:57:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Defensive programming with jQuery</title>
		<link>http://tech.tjandrawibawa.org/blog/2009/10/16/defensive-programming-with-jquery/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2009/10/16/defensive-programming-with-jquery/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 05:00:29 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tech.tjandrawibawa.org/blog/2009/10/16/defensive-programming-with-jquery/</guid>
		<description><![CDATA[Sometimes it&#8217;s good to code defensively and put those extra checks &#34;just in case&#34;.    This is especially true if your front end code are generated or rendered dynamically. 
I have often encountered Javascript code that tries to access certain HTML element that doesn&#8217;t exists.    Usually this is caused by [...]]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2009/10/16/defensive-programming-with-jquery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Re-using server side logic for client side validation</title>
		<link>http://tech.tjandrawibawa.org/blog/2009/06/12/re-using-server-side-logic-for-client-side-validation/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2009/06/12/re-using-server-side-logic-for-client-side-validation/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 12:42:06 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[coldfusion]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://tech.tjandrawibawa.org/blog/2009/06/12/re-using-server-side-logic-for-client-side-validation/</guid>
		<description><![CDATA[In this post, I will show an example how to re-use your server side validation code for client side validation. This is achieved by using Ajax call to the server side validation code. ]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2009/06/12/re-using-server-side-logic-for-client-side-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deselecting options from a select element in jQuery</title>
		<link>http://tech.tjandrawibawa.org/blog/2008/11/12/deselecting-options-from-a-select-element-in-jquery/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2008/11/12/deselecting-options-from-a-select-element-in-jquery/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 03:39:24 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tjandrawibawa.org/lyceum/techblog/2008/11/12/deselecting-options-from-a-select-element-in-jquery/</guid>
		<description><![CDATA[Oh boy, yet another IE7 gotcha.
I wrote this piece of jQuery to code to deselect selected option(s) from a select element:
$(&#38;quot;[ name = 'selectFieldName' ] option:selected &#38;quot;).attr( 'selected', '' );
Which works fine in Firefox, but then when the QA tested it, it doesn&#8217;t work for him and of course he tested in IE7 (which is [...]]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2008/11/12/deselecting-options-from-a-select-element-in-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing javascript event attribute on the fly</title>
		<link>http://tech.tjandrawibawa.org/blog/2008/11/01/changing-javascript-event-attribute-on-the-fly/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2008/11/01/changing-javascript-event-attribute-on-the-fly/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 13:45:55 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tjandrawibawa.org/lyceum/techblog/2008/11/01/changing-javascript-event-attribute-on-the-fly/</guid>
		<description><![CDATA[This doesn&#8217;t work in IE, in fact this was one of the problems that responsible for my staying late during the production release mentioned on the previous post.
For that particular project, we have a common user interface (UI) for both adding and editing a record. I use jQuery to change the interface depending on the [...]]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2008/11/01/changing-javascript-event-attribute-on-the-fly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How short can you code</title>
		<link>http://tech.tjandrawibawa.org/blog/2008/09/21/how-short-can-you-code/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2008/09/21/how-short-can-you-code/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 13:12:44 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://tjandrawibawa.org/lyceum/techblog/2008/09/21/how-short-can-you-code/</guid>
		<description><![CDATA[Still on cloud number 9 with jQuery, I thought of a new slogan for it:
jQuery &#8211; how short can you code?
]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2008/09/21/how-short-can-you-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery basics</title>
		<link>http://tech.tjandrawibawa.org/blog/2008/09/10/jquery-basics/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2008/09/10/jquery-basics/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 12:29:35 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tjandrawibawa.org/lyceum/techblog/2008/09/10/jquery-basics/</guid>
		<description><![CDATA[What&#8217;s the most mundane and repeated code that you have to write in Javascript?
Most likely it is getting an element by id or getting some elements by name. 
  Getting element by id  Old school:  
var theElem = document.getElementById('theElem');
jQuery: 
var theElem = $('#theElem');
That&#8217;s basic enough, it&#8217;s pretty similar to Prototype. But worth [...]]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2008/09/10/jquery-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I heart jQuery</title>
		<link>http://tech.tjandrawibawa.org/blog/2008/09/06/i-heart-jquery/</link>
		<comments>http://tech.tjandrawibawa.org/blog/2008/09/06/i-heart-jquery/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 10:58:39 +0000</pubDate>
		<dc:creator>felixt</dc:creator>
				<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://tjandrawibawa.org/lyceum/techblog/2008/09/06/i-heart-jquery/</guid>
		<description><![CDATA[Earlier this year, my manager asked me to research Javascript framework to be used in our applications.
I proposed jQuery since it seems to be getting lots of love around CF community. Another reason (quite selfishly) was: I want to learn another framework and growing my repertoire of skills (if I wanted to play it safe, [...]]]></description>
		<wfw:commentRss>http://tech.tjandrawibawa.org/blog/2008/09/06/i-heart-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
