<?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>{Complexity} &#187; Ajax</title>
	<atom:link href="http://technote.wsjoung.com/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://technote.wsjoung.com</link>
	<description>simple note</description>
	<lastBuildDate>Tue, 27 Jul 2010 04:28:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Using jQuery with Other Libraries</title>
		<link>http://technote.wsjoung.com/2010/06/28/using-jquery-with-other-libraries/</link>
		<comments>http://technote.wsjoung.com/2010/06/28/using-jquery-with-other-libraries/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 01:28:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Library]]></category>

		<guid isPermaLink="false">http://technote.wsjoung.com/?p=138</guid>
		<description><![CDATA[Overriding the $-function Including jQuery before Other Libraries Referencing Magic &#8211; Shortcuts for jQuery var J = jQuery.noConflict(); function init(){ J(&#8220;div#sshow&#8221;).slideView(); } J(window).bind(&#8220;load&#8221;, init );]]></description>
			<content:encoded><![CDATA[<ul>
<li>Overriding the $-function</li>
<li>Including jQuery before Other Libraries</li>
<li>Referencing Magic &#8211; Shortcuts for jQuery</li>
</ul>
<blockquote><p>
var J = jQuery.noConflict();<br />
function init(){<br />
    J(&#8220;div#sshow&#8221;).slideView();<br />
}<br />
J(window).bind(&#8220;load&#8221;, init );
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://technote.wsjoung.com/2010/06/28/using-jquery-with-other-libraries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Small Ajax example</title>
		<link>http://technote.wsjoung.com/2006/11/17/small-ajax-example/</link>
		<comments>http://technote.wsjoung.com/2006/11/17/small-ajax-example/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 00:55:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://wsjoung.wordpress.com/2006/11/17/small-ajax-example/</guid>
		<description><![CDATA[JavaScripts create XMLHttpRequest() object first. req = new XMLHttpRequest(); once we create XMLHttpRequest() object, then we can request xml data req.open(&#8220;GET&#8221;, url); req.send(null); then check onreadystatechange state req.onreadystatechange = processReqChange; it has 5 states (0-4)and 4 means completed retrieving data function processReqChange() { // only if req shows "complete" if (req.readyState == 4) { // [...]]]></description>
			<content:encoded><![CDATA[<p>JavaScripts create XMLHttpRequest() object first.<br />
req = new XMLHttpRequest();</p>
<p>once we create XMLHttpRequest() object, then we can request xml data<br />
req.open(&#8220;GET&#8221;, url);<br />
req.send(null);</p>
<p>then check onreadystatechange state<br />
req.onreadystatechange = processReqChange;</p>
<p>it has 5 states (0-4)and 4 means completed retrieving data</p>
<pre>function processReqChange() {
// only if req shows "complete"
if (req.readyState == 4) {
// only if  "OK"
if (req.status == 200) {
// ...processing statements go here...
response = req.responseXML;

if (response) {
// do something with XML contents
} else {
// no XML contents
}

} else {
alert("There was a problem retrieving the XML data:n" +
req.statusText);
}
}
}</pre>
<p><a href="http://web.nmsu.edu/~joung/PulseMedia/inputCheck/"> Demo page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technote.wsjoung.com/2006/11/17/small-ajax-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax (Asynchronous JavaScript and XML)</title>
		<link>http://technote.wsjoung.com/2006/11/17/ajax-asynchronous-javascript-and-xml/</link>
		<comments>http://technote.wsjoung.com/2006/11/17/ajax-asynchronous-javascript-and-xml/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 00:40:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ajax]]></category>

		<guid isPermaLink="false">http://wsjoung.wordpress.com/2006/11/17/ajax-asynchronous-javascript-and-xml/</guid>
		<description><![CDATA[Asynchronous JavaScript and XML, I can explain this with just one picture. This picture show us that the browser doen&#8217;t connect to a websever to get html pages any more. for example, if you open gmail.com, then you will get bunch of xml document instead of html. with those xml document, the JavaScript will generate [...]]]></description>
			<content:encoded><![CDATA[<p>Asynchronous JavaScript and XML, I can explain this with just one picture.</p>
<p><code></code></p>
<p style="text-align:center;"><a title="98146589_99749e538f.jpg" rel="attachment wp-att-29" href="http://wsjoung.wordpress.com/2006/11/17/ajax-asynchronous-javascript-and-xml/98146589_99749e538fjpg/"><img src="http://wsjoung.files.wordpress.com/2006/11/98146589_99749e538f.jpg" alt="98146589_99749e538f.jpg" /></a></p>
<p>This picture show us that the browser doen&#8217;t connect to a websever to get html pages any more. for example, if you open gmail.com, then you will get bunch of xml document instead of html.<br />
with those xml document, the JavaScript will generate proper html pages.<br />
it&#8217;s pretty simple concept, huh?</p>
<p><a href="http://en.wikipedia.org/wiki/AJAX">Wikipedia says</a><br />
<a href="http://www.webpasties.com/xmlHttpRequest/">Simple tutorial</a><br />
<a href="http://ajaxblog.com/">Ajax blog</a><br />
<a href="https://bpcatalog.dev.java.net/nonav/ajax/index.html">Java BluePrints Solutions Catalog</a><br />
<a href="http://www.javaworld.com/javaworld/jw-10-2005/jw-1017-ajax.html">Technical article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://technote.wsjoung.com/2006/11/17/ajax-asynchronous-javascript-and-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
