<?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>Ajax Tutorial &#187; jQuery</title>
	<atom:link href="http://tutorialajax.com/framework/library/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://tutorialajax.com</link>
	<description>Prototype, jQuery and another Ajax tutorials</description>
	<lastBuildDate>Tue, 11 Nov 2008 14:24:46 +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>Start Using jQuery</title>
		<link>http://tutorialajax.com/start-using-jquery.html</link>
		<comments>http://tutorialajax.com/start-using-jquery.html#comments</comments>
		<pubDate>Sat, 07 Jun 2008 23:49:12 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[using]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=12</guid>
		<description><![CDATA[jQuery main function is the &#8216;$(document).ready() function&#8217;. Although it&#8217;s many way to start jQuery, Always use this function to start using jQuery is good. example:
$(document).ready(function() {
$('.header-company').addClass('highlight');
});
This will add class named &#8216;highlight&#8217; to element that have &#8216;header-company&#8217; class. This is used generally for changing / adding class for CSS. So, when the document was loaded, the [...]


Related posts:<ol><li><a href='http://tutorialajax.com/using-prototype.html' rel='bookmark' title='Permanent Link: Using Prototype'>Using Prototype</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>jQuery main function is the &#8216;<em>$(document).ready()</em> function&#8217;. Although it&#8217;s many way to start jQuery, Always use this function to start using jQuery is good. example:</p>
<p><code>$(document).ready(function() {<br />
$('.header-company').addClass('highlight');<br />
});</code></p>
<p>This will add class named &#8216;highlight&#8217; to element that have &#8216;header-company&#8217; class. This is used generally for changing / adding class for CSS. So, when the document was loaded, the jQuery command will add the CSS Style.</p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/using-prototype.html' rel='bookmark' title='Permanent Link: Using Prototype'>Using Prototype</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/start-using-jquery.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery feature</title>
		<link>http://tutorialajax.com/jquery-feature.html</link>
		<comments>http://tutorialajax.com/jquery-feature.html#comments</comments>
		<pubDate>Thu, 15 May 2008 23:17:37 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[benefit]]></category>
		<category><![CDATA[feature]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=11</guid>
		<description><![CDATA[jQuery provides many general function to build a rich pages. jQuery feature:

Ajax
jQuery is one of the ajax framework that used mostly by many web master.
Shortcut access to DOM
instead of using bulk of code in accessing DOM, jQuery have the shortcut.
Manipulating the element content
With jQuery, we can freely insert, update and delete every HTML element.
Easy event [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>jQuery provides many general function to build a rich pages. jQuery feature:</p>
<ul>
<li>Ajax<br />
jQuery is one of the ajax framework that used mostly by many web master.</li>
<li>Shortcut access to DOM<br />
instead of using bulk of code in accessing DOM, jQuery have the shortcut.</li>
<li>Manipulating the element content<br />
With jQuery, we can freely insert, update and delete every HTML element.</li>
<li>Easy event handling<br />
Event handling is no fear again in web pages, jQuery make the process simple.</li>
<li>Animation<br />
by default, jQuery already have ability to perform general animation on the pages.</li>
<li>Action Chaining<br />
Instead of using many temporary variable and repetition lines, we can easily unite several lines of code that have same characteristic to a line code with chaining.</li>
<li>CSS Compliance<br />
The jQuery selector is CSS Compliance, that make any designer that already have knowledge about CSS is able to learn jQuery easily.</li>
<li>Cross browser<br />
using jQuery, no more hack for IE&#8230; the framework has done it automatically.</li>
</ul>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/jquery-feature.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Introduction</title>
		<link>http://tutorialajax.com/jquery-introduction.html</link>
		<comments>http://tutorialajax.com/jquery-introduction.html#comments</comments>
		<pubDate>Mon, 05 May 2008 16:08:52 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[introduction]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=10</guid>
		<description><![CDATA[jQuery is created by John Resig, it is a powerful JavaScript library that can rock and enhance your websites. jQuery is provides very wide range of features, easy-to-use syntax, and great cross-platform compatibility in a single file.
Another jQuery superiority is it has thousands of plugin that developed to extend jQuery&#8217;s functionality, the plugin make jQuery [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery</strong> is created by John Resig, it is a powerful JavaScript library that can rock and enhance your websites. jQuery is provides very wide range of features, easy-to-use syntax, and great cross-platform compatibility in a single file.</p>
<p>Another jQuery superiority is it has thousands of plugin that developed to extend jQuery&#8217;s functionality, the plugin make jQuery as an essential tool. Mastering jQuery allow you to add attractive interactions and animations to your web with AJAX, events, effects, and advanced JavaScript language features.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/jquery-introduction.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
