<?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>Orang Type Banyak &#187; My Notes</title>
	<atom:link href="http://iwani.com/blog/category/my-notes/feed/" rel="self" type="application/rss+xml" />
	<link>http://iwani.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 28 Jul 2010 17:24:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JQuery notes</title>
		<link>http://iwani.com/blog/2009/08/02/jquery-notes/</link>
		<comments>http://iwani.com/blog/2009/08/02/jquery-notes/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 08:23:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[My Notes]]></category>

		<guid isPermaLink="false">http://iwani.com/blog/2009/08/02/jquery-notes/</guid>
		<description><![CDATA[Some key notes on jQuery.
Put HTML value in div box.
$(&#8221;#somediv&#8221;).html(&#8217;display_this&#8217;);

Put value in &#60;input&#62; element.
$(&#8221;#somediv&#8221;).val(&#8217;display_this&#8217;);

Apply CSS to a div box.
$(&#8221;#somediv&#8221;).css(&#8221;color&#8221;,&#8221;red&#8221;);

Ajax call.
$.ajax({
type: &#8220;POST&#8221;,
url: &#8220;some.php&#8221;,
data: &#8220;name=John&#38;location=Boston&#8221;,
success: function(msg){
alert( &#8220;Data Saved: &#8221; + msg );
}
});

DIV click action.
$(&#8221;#somediv&#8221;).click(function(event){
alert(&#8221;Clicked!&#8221;);
});

jQuery init wrapper.
$(document).ready(function(){
// Your code here
});

]]></description>
		<wfw:commentRss>http://iwani.com/blog/2009/08/02/jquery-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>