<?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; Library</title>
	<atom:link href="http://tutorialajax.com/framework/library/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>Font Zoomer JavaScript</title>
		<link>http://tutorialajax.com/font-zoomer-javascript.html</link>
		<comments>http://tutorialajax.com/font-zoomer-javascript.html#comments</comments>
		<pubDate>Tue, 04 Nov 2008 14:09:52 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[zoom]]></category>

		<guid isPermaLink="false">http://tutorialajax.com/?p=24</guid>
		<description><![CDATA[This idea come from the Wordpress Zoom Box Plugin. It&#8217;s a widget used to change websites font automatically. This simple widget is easy to made and useful for blog / website. This is how to do it:
Adding the Zoom Box
First of all, add a &#60;Div&#62; to make a zoom-box right after &#60;BODY&#62;

&#60;div id="zoom-box"&#62;
&#60;p id="zoom-title"&#62;&#60;a href="http://thesky.asia/zoom-box/"&#62;ZoomBox&#60;/a&#62;&#60;/p&#62;
&#60;p [...]


Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This idea come from the <a href="http://thesky.asia/zoom-box/">Wordpress Zoom Box Plugin</a>. It&#8217;s a widget used to change websites font automatically. This simple widget is easy to made and useful for blog / website. This is how to do it:</p>
<h3>Adding the Zoom Box</h3>
<p>First of all, add a <strong>&lt;Div&gt;</strong> to make a zoom-box right after <strong>&lt;BODY&gt;</strong><br />
<code><br />
&lt;div id="zoom-box"&gt;<br />
&lt;p id="zoom-title"&gt;&lt;a href="http://thesky.asia/zoom-box/"&gt;ZoomBox&lt;/a&gt;&lt;/p&gt;<br />
&lt;p id="zoom-control"&gt;<br />
&lt;a href="#" id="zoom-in"&gt;-&lt;/a&gt;<br />
&lt;span id="zoom-text"&gt;10&lt;/span&gt;<br />
&lt;a href="#" id="zoom-out"&gt;+&lt;/a&gt;<br />
&lt;/p&gt;<br />
&lt;/div&gt;</code><br />
<span id="more-24"></span></p>
<h3>Floating and Styling the Zoom Box</h3>
<p>Make the zoom-box <strong>floating as a layer</strong>. so, the it won&#8217;t interfere the existing layout. This step can be done by <strong>css</strong>. Setting the box position to absolute and then use the css to dress up the zoom box whatever you like. For example, this is my css code:</p>
<p><code><br />
&lt;style type="text/css"&gt;<br />
#zoom-box {<br />
position: absolute;<br />
top: 10px;<br />
right: 10px;<br />
background-color:#aaa;<br />
border: 1px solid #000;<br />
}<br />
#zoom-box * {<br />
text-align:center;<br />
font-size: 9pt;<br />
margin: 0;<br />
padding: 0;<br />
text-decoration: none;<br />
height: 20px;<br />
}<br />
#zoom-control * {<br />
float: left;<br />
display: block;<br />
width: 25px;<br />
background-color:#FFFFFF;<br />
}<br />
#zoom-control a {<br />
background-color:#CCC;<br />
}<br />
#zoom-control a:hover {<br />
background-color: #333333;<br />
color: #FFFFFF;<br />
}<br />
&lt;/style&gt;<br />
</code></p>
<h3>Zoom Box Scripting</h3>
<p>With above two steps, we&#8217;ve got a simple zoom-box widget. But it won&#8217;t work yet. To get our zoom-box works, we can use <strong>javascript</strong> like this:</p>
<p><code><br />
&lt;script language="javascript"&gt;<br />
window.onload = function () {<br />
var iFontSize = 1;<br />
document.getElementById("zoom-in").onclick = function () {<br />
iFontSize -= 0.1;<br />
document.body.style.fontSize = iFontSize + "em";<br />
document.getElementById("zoom-text").innerHTML = Math.round( iFontSize * 10 );<br />
}<br />
document.getElementById("zoom-out").onclick = function () {<br />
iFontSize += 0.1;<br />
document.body.style.fontSize = iFontSize + "em";<br />
document.getElementById("zoom-text").innerHTML = Math.round( iFontSize * 10 );<br />
}<br />
}<br />
&lt;/script&gt;<br />
</code></p>
<p>That must works now. If it won&#8217;t work, please recheck your HTML / XHTML. Maybe it&#8217;s not valid or the page&#8217;s structure is broken. Please fix it and try again.</p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/font-zoomer-javascript.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using Prototype</title>
		<link>http://tutorialajax.com/using-prototype.html</link>
		<comments>http://tutorialajax.com/using-prototype.html#comments</comments>
		<pubDate>Sat, 02 Aug 2008 19:09:25 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Prototype]]></category>
		<category><![CDATA[basic]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[using]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=6</guid>
		<description><![CDATA[To using prototype, first we must download it. It&#8217;s only 1 file named &#8216;prototype.js&#8216;. It is about 120kb, a bit too large for a website. but don&#8217;t worry, because the 120kb will do more&#8230;   besides that, we can compress it using any packer. I won&#8217;t describe how to compress the file here. If [...]


Related posts:<ol><li><a href='http://tutorialajax.com/prototype.html' rel='bookmark' title='Permanent Link: Prototype'>Prototype</a></li>
<li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
<li><a href='http://tutorialajax.com/start-using-jquery.html' rel='bookmark' title='Permanent Link: Start Using jQuery'>Start Using jQuery</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>To using prototype, first we must download it. It&#8217;s only 1 file named &#8216;<em>prototype.js</em>&#8216;. It is about 120kb, a bit too large for a website. but don&#8217;t worry, because the 120kb will do more&#8230; <img src='http://tutorialajax.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  besides that, we can compress it using any packer. I won&#8217;t describe how to compress the file here. If you wanna compress the file, you can learn it on &#8220;Compressing JavaScript&#8221;.</p>
<p>To use the prototype, first refer to the <em>&#8216;prototype.js&#8217;</em> as shown below<br />
<code>&lt;script type="text/javascript" src="prototype.js"&gt;<br />
&lt;/script&gt;</code></p>
<p>Place it at the &lt;head&gt; tags of your html. Actually you can place it anywhere  to use prototype, but It always be good to place it on the head because your pages will look cleaner.</p>
<p>And the main function in prototype is</p>
<p><code>document.observe('dom:loaded' , function() {<br />
... -&gt; script code here<br />
});</code></p>
<p>it&#8217;s not necessary to include the function if we want to use prototype, but this function guarantee that all the DOM structure has been loaded before the script run. That is a good habid to always use this function.</p>
<p><strong>The Hello World</strong></p>
<p>It&#8217;s a good idea to start every programming with the &#8216;hello world&#8217;.</p>
<p><code>document.observe('dom:loaded' , function() {<br />
$(document).update("Hello World!!");<br />
});</code></p>
<p>note that we call the sexy function &#8216;<em>$(document).update</em>&#8216; to pop out the text. about further of this function, we will learn it together later&#8230; by now, this is only &#8216;<strong>Using Prototype</strong>&#8216;</p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/prototype.html' rel='bookmark' title='Permanent Link: Prototype'>Prototype</a></li>
<li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
<li><a href='http://tutorialajax.com/start-using-jquery.html' rel='bookmark' title='Permanent Link: Start Using jQuery'>Start Using jQuery</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/using-prototype.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Prototype-CSS $$() function</title>
		<link>http://tutorialajax.com/the-prototype-css-function.html</link>
		<comments>http://tutorialajax.com/the-prototype-css-function.html#comments</comments>
		<pubDate>Sat, 26 Jul 2008 19:35:37 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Prototype]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dollar]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=8</guid>
		<description><![CDATA[The dollar dollar function is Prototype&#8217;s CSS Selector Engine. The &#8216;$$()&#8217; function returns all css match elements. It was used quite same as the CSS selector. For example, to get all tags with the class &#8220;myclass&#8221;, we use the following:
$$(".myclass")
This function will return the array of elements match the selector string. And We can make [...]


Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
<li><a href='http://tutorialajax.com/the-form-f-function.html' rel='bookmark' title='Permanent Link: The Form $F() function'>The Form $F() function</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The dollar dollar function is Prototype&#8217;s CSS Selector Engine. The &#8216;$$()&#8217; function returns all css match elements. It was used quite same as the CSS selector. For example, to get all tags with the class &#8220;myclass&#8221;, we use the following:</p>
<p><code>$$(".myclass")</code></p>
<p>This function will return the array of elements match the selector string. And We can make the returned elements bold like this:</p>
<p><code>$$(".myclass").invoke('setStyle', { fontWeight: bold; })</code></p>
<p>Easy as pie&#8230;</p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
<li><a href='http://tutorialajax.com/the-form-f-function.html' rel='bookmark' title='Permanent Link: The Form $F() function'>The Form $F() function</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/the-prototype-css-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Form $F() function</title>
		<link>http://tutorialajax.com/the-form-f-function.html</link>
		<comments>http://tutorialajax.com/the-form-f-function.html#comments</comments>
		<pubDate>Fri, 25 Jul 2008 19:41:57 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Prototype]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[function]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=9</guid>
		<description><![CDATA[the $F() function will returns the value of form element.
$F("form_element_id")
Does it need a description anymore??


Related posts:The Prototype-CSS $$() function
The Prototype $() function



Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-css-function.html' rel='bookmark' title='Permanent Link: The Prototype-CSS $$() function'>The Prototype-CSS $$() function</a></li>
<li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>the <em>$F()</em> function will returns the value of form element.</p>
<p><code>$F("form_element_id")</code></p>
<p>Does it need a description anymore??</p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-css-function.html' rel='bookmark' title='Permanent Link: The Prototype-CSS $$() function'>The Prototype-CSS $$() function</a></li>
<li><a href='http://tutorialajax.com/the-prototype-function.html' rel='bookmark' title='Permanent Link: The Prototype $() function'>The Prototype $() function</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/the-form-f-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Prototype $() function</title>
		<link>http://tutorialajax.com/the-prototype-function.html</link>
		<comments>http://tutorialajax.com/the-prototype-function.html#comments</comments>
		<pubDate>Sun, 20 Jul 2008 19:23:58 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Prototype]]></category>
		<category><![CDATA[dollar]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=7</guid>
		<description><![CDATA[The dollar function is one of the Prototype Utility Function. $() is the most frequently used prototype&#8217;s function. basically it was used to refer an element in the HTML page. The function is quickly shorthand for getElementById.
The usual function identifying an element is:
document.getElementById("element_id")
The $() function reduces the code to:
$("element_id")
For example, you can set the CSS [...]


Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-css-function.html' rel='bookmark' title='Permanent Link: The Prototype-CSS $$() function'>The Prototype-CSS $$() function</a></li>
<li><a href='http://tutorialajax.com/font-zoomer-javascript.html' rel='bookmark' title='Permanent Link: Font Zoomer JavaScript'>Font Zoomer JavaScript</a></li>
<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>The dollar function is one of the <strong>Prototype Utility Function</strong>. <em>$()</em> is the most frequently used prototype&#8217;s function. basically it was used to refer an element in the HTML page. The function is quickly shorthand for <em>getElementById</em>.</p>
<p>The usual function identifying an element is:<br />
<code>document.getElementById("element_id")</code></p>
<p>The $() function reduces the code to:<br />
<code>$("element_id")</code></p>
<p>For example, you can set the CSS text color with this code:<br />
<code>$("element_id").style.color = "#ffffff";</code></p>
<p>Or, the &#8220;Prototype way&#8221;:<br />
<code>$("id_of_element").setStyle({color: '#ffffff'});</code></p>


<p>Related posts:<ol><li><a href='http://tutorialajax.com/the-prototype-css-function.html' rel='bookmark' title='Permanent Link: The Prototype-CSS $$() function'>The Prototype-CSS $$() function</a></li>
<li><a href='http://tutorialajax.com/font-zoomer-javascript.html' rel='bookmark' title='Permanent Link: Font Zoomer JavaScript'>Font Zoomer JavaScript</a></li>
<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/the-prototype-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Prototype</title>
		<link>http://tutorialajax.com/prototype.html</link>
		<comments>http://tutorialajax.com/prototype.html#comments</comments>
		<pubDate>Tue, 20 May 2008 18:24:59 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://localhost/ajax-framework/?p=5</guid>
		<description><![CDATA[Prototype is the most popular Ajax framework. It used by many giant-website such : Apple, Gucci, etc&#8230; The Prototype JavaScript Framework is a JavaScript framework created by Sam Stephenson. Prorotype is implemented as a single file of JavaScript code &#8220;prototype.js&#8221;.
Prototype is also used as the low layer for many framework, for example: script.aculo.us, Rico, ExtJS, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><strong>Prototype</strong> is the most popular Ajax framework. It used by many giant-website such : Apple, Gucci, etc&#8230; The Prototype JavaScript Framework is a JavaScript framework created by <em>Sam Stephenson</em>. Prorotype is implemented as a single file of JavaScript code &#8220;<em>prototype.js&#8221;</em>.</p>
<p>Prototype is also used as the low layer for many framework, for example: <a title="Script.Aculo.Us Effects" href="http://script.aculo.us/" target="_blank">script.aculo.us</a>, <a title="Rico Open Source JavaScript" href="http://openrico.org" target="_blank">Rico</a>, <a title="Ext JS" href="http://extjs.com" target="_blank">ExtJS</a>, <a title="Moo.fx" href="http://moofx.mad4milk.net" target="_blank">Moo.fx</a>, etc. Prototype provides many functions for developing JavaScript web applications. The prorotype features programming shortcuts for accessing element, events, and major functions to deal with Ajax.</p>
<p>Prototype also feature library functions to support object oriented programming that use classes and ojects, something the JavaScript language hard to implement.</p>
<p>You can find and download <a title="Prototype JS" href="http://www.prototypejs.org/" target="_blank">prototype</a> on their site.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://tutorialajax.com/prototype.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>
