<?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>Amaronline.com &#187; xml</title>
	<atom:link href="http://www.amaronline.com/tag/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amaronline.com</link>
	<description>Technology makes everything perfect</description>
	<lastBuildDate>Wed, 01 Feb 2012 18:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>AJAX = Asynchronous JavaScript and XML</title>
		<link>http://www.amaronline.com/2009/05/ajax-asynchronous-javascript-and-xml/</link>
		<comments>http://www.amaronline.com/2009/05/ajax-asynchronous-javascript-and-xml/#comments</comments>
		<pubDate>Sat, 23 May 2009 16:26:10 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[Web Guide]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[ajax = asynchronous javascript and xml]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[xmlhttprequest]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=160</guid>
		<description><![CDATA[AJAX is not a new programming language, but a new technique for creating better, faster, and more interactive web applications. &#160; With AJAX, a JavaScript can communicate directly with the server, with the XMLHttpRequest object. With this object, a JavaScript &#8230; <a href="http://www.amaronline.com/2009/05/ajax-asynchronous-javascript-and-xml/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2009%2F05%2Fajax-asynchronous-javascript-and-xml%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2009%2F05%2Fajax-asynchronous-javascript-and-xml%2F&amp;source=amaronline&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img height="175" align="left" width="200" src="http://www.amaronline.com/wp-content/uploads/ajax-logo.jpg" alt="" />AJAX is not a new programming language, but a new technique for creating better, faster, and more interactive web applications.</p>
<p>&nbsp;</p>
<p>With AJAX, a JavaScript can communicate directly with the server, with the XMLHttpRequest object. With this object, a JavaScript can trade data with a web server, without reloading the page.</p>
<p>AJAX uses asynchronous data transfer (HTTP requests) between the browser and the web server, allowing web pages to request small bits of information from the server instead of whole pages.</p>
<p>The AJAX technique makes Internet applications smaller, faster and more user-friendly.</p>
<p>AJAX is based on Internet standards</p>
<p>AJAX is based on the following web standards:</p>
<p>&nbsp;&nbsp;&nbsp; * JavaScript<br />
&nbsp;&nbsp;&nbsp; * XML<br />
&nbsp;&nbsp;&nbsp; * HTML<br />
&nbsp;&nbsp;&nbsp; * CSS</p>
<p>lamp&nbsp; AJAX applications are browser- and platform-independent.<br />
AJAX uses the XMLHttpRequest object</p>
<p>To get or send information from/to a database or a file on the server with traditional JavaScript, you will have to make an HTML form, and a user will have to click the &quot;Submit&quot; button to send/get the information, wait for the server to respond, then a new page will load with the results. Because the server returns a new page each time the user submits input, traditional web applications can run slowly and tend to be less user-friendly.</p>
<p>With AJAX, your JavaScript communicates directly with the server, through the JavaScript XMLHttpRequest object.</p>
<p>With the XMLHttpRequest object, a web page can make a request to, and get a response from a web server &#8211; without reloading the page. The user will stay on the same page, and he or she will not notice that scripts request pages, or send data to a server in the background.<br />
The XMLHttpRequest object</p>
<p>By using the XMLHttpRequest object, a web developer can update a page with data from the server after the page has loaded!</p>
<p>AJAX was made popular in 2005 by Google (with Google Suggest).</p>
<p>Google Suggest is using the XMLHttpRequest object to create a very dynamic web interface: When you start typing in Google&#8217;s search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions.</p>
<p>The XMLHttpRequest object is supported in all major browsers (Internet Explorer, Firefox, Chrome, Opera, and Safari).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2009/05/ajax-asynchronous-javascript-and-xml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introduction to Ajax</title>
		<link>http://www.amaronline.com/2008/11/introduction-to-ajax/</link>
		<comments>http://www.amaronline.com/2008/11/introduction-to-ajax/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:16:26 +0000</pubDate>
		<dc:creator>amaronline</dc:creator>
				<category><![CDATA[Web Guide]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Asynchronous JavaScript And XML]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[learn ajax]]></category>
		<category><![CDATA[what is ajax]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.amaronline.com/?p=15</guid>
		<description><![CDATA[AJAX stands for Asynchronous JavaScript And XML. What You Should Already Know Before you continue you should have a basic understanding of the following: * HTML / XHTML * JavaScript If you want to study these subjects first, find the &#8230; <a href="http://www.amaronline.com/2008/11/introduction-to-ajax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fintroduction-to-ajax%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.amaronline.com%2F2008%2F11%2Fintroduction-to-ajax%2F&amp;source=amaronline&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>AJAX stands for Asynchronous JavaScript And XML.<br />
What You Should Already Know</p>
<p>Before you continue you should have a basic understanding of the following:</p>
<p>* HTML / XHTML<br />
* JavaScript</p>
<p>If you want to study these subjects first, find the tutorials on our Home page.<br />
AJAX = Asynchronous JavaScript and XML</p>
<p>AJAX is not a new programming language, but a technique for creating better, faster, and more interactive web applications.</p>
<p>With AJAX, your JavaScript can communicate directly with the server, using the JavaScript XMLHttpRequest object. With this object, your JavaScript can trade data with a web server, without reloading the page.</p>
<p>AJAX uses asynchronous data transfer (HTTP requests) between the browser and the web server, allowing web pages to request small bits of information from the server instead of whole pages.</p>
<p>The AJAX technique makes Internet applications smaller, faster and more user-friendly.</p>
<p>lamp  AJAX is a browser technology independent of web server software.<br />
AJAX is Based on Web Standards</p>
<p>AJAX is based on the following web standards:</p>
<p>* JavaScript<br />
* XML<br />
* HTML<br />
* CSS</p>
<p>The web standards used in AJAX are well defined, and supported by all major browsers. AJAX applications are browser and platform independent.<br />
AJAX is About Better Internet Applications</p>
<p>Web applications have many benefits over desktop applications; they can reach a larger audience, they are easier to install and support, and easier to develop.</p>
<p>However, Internet applications are not always as &#8220;rich&#8221; and user-friendly as traditional desktop applications.</p>
<p>With AJAX, Internet applications can be made richer and more user-friendly.<br />
You Can Start Using AJAX Today</p>
<p>There is nothing new to learn.</p>
<p>AJAX is based on existing standards. These standards have been used by most developers for several years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.amaronline.com/2008/11/introduction-to-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

