Rasmus’ 30 second AJAX Tutorial

I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became “AJAX”. And it really isn’t as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. First the Javascript:

function createRequestObject() {
     var ro;     
     ro = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
 
     return ro;
}
 
var http = createRequestObject();
 
function sndReq(action) {
     http.open('get', 'rpc.php?action='+action);
     http.onreadystatechange = handleResponse;
     http.send(null);
}
 
function handleResponse() {
     if(http.readyState == 4){
          var response = http.responseText;
          var update = new Array();
 
          if(response.indexOf('|') != -1) {
               update = response.split('|');
               document.getElementById(update[0]).innerHTML = update[1];
          }
     }
}

This creates a request object along with a send request and handle response function. So to actually use it, you could include this js in your page. Then to make one of these backend requests you would tie it to something. Like an onclick event or a straight href like this:

<a href="javascript:sndReq('foo')">[foo]</a>

That means that when someone clicks on that link what actually happens is that a backend request to rpc.php?action=foo will be sent.
In rpc.php you might have something like this:

switch($_REQUEST['action']) {
     case 'foo':
          /* do something */
          echo "foo|foo done";
          break;
     ...
}

Now, look at handleResponse. It parses the “foo|foo done” string and splits it on the ‘|’ and uses whatever is before the ‘|’ as the dom element id in your page and the part after as the new innerHTML of that element. That means if you have a div tag like this in your page:

<div id="foo"></div>

Once you click on that link, that will dynamically be changed to:

<div id="foo">
     foo done
</div>

That’s all there is to it. Everything else is just building on top of this. Replacing my simple response “id|text” syntax with a richer XML format and makine the request much more complicated as well. Before you blindly install large “AJAX” libraries, have a go at rolling your own functionality so you know exactly how it works and you only make it as complicated as you need. Often you don’t need much more than what I have shown here.

Expanding this approach a bit to send multiple parameters in the request, for example, would be really simple. Something like:

function sndReqArg(action,arg) {
     http.open('get', 'rpc.php?action='+action+'&arg='+arg);
     http.onreadystatechange = handleResponse;
     http.send(null);
}

And your handleResponse can easily be expanded to do much more interesting things than just replacing the contents of a div.

-Rasmus

(Original Post @ php-general mailing list)

27 responses to “Rasmus’ 30 second AJAX Tutorial”

17 01 2006
CoderLab’s Blog » Rasmus’ 30 second AJAX Tutorial (12:39:00) :

[...] Rasmus’ 30 second AJAX Tutorial [...]

5 02 2006
ivo’s home » Rasmus’ 30 second AJAX Tutorial (23:16:54) :

[...] Rasmus’ 30 second AJAX Tutorial [...]

15 03 2006
Thomas Winston Thorpe » Blog Archive » links for 2006-03-16 (19:18:32) :

[...] CoderLab’s Blog » Rasmus’ 30 second AJAX Tutorial (tags: ajax) [...]

7 06 2006
A .NET pontja körül » 60 AJAX tutorial-t (01:25:11) :

[...] Rasmus’ 30 second AJAX Tutorial I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became “AJAX”. And it really isn’t as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. [...]

10 06 2006
Computer Software | Graphic & Web Design | Multimedia (03:06:44) :

[...] Rasmus’ 30 second AJAX Tutorial I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became “AJAX”. And it really isn’t as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. [...]

5 07 2006
Top 126 Ajax Tutorials : Ultimate Web Developer Lists : eConsultant (14:18:02) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

3 09 2006
Helpful tutorials to learn Ajax - free-ebooks.com.np : Download free Ebooks (17:56:38) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

2 10 2006
All Cusco | Blog » Blog Archive » Top - 126 tutoriales Ajax (07:50:24) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

2 10 2006
Los Top 126 Tutotial de Ajax « The WinDs (08:02:22) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

2 10 2006
Manuales Desmanes » Blog Archive » 126 Tutoriales de AJAX - en Inglés (10:46:52) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

7 10 2006
TechnoRepublic » Blog Archive » Top 126 AJAX Tutorial (13:44:54) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

12 10 2006
defmay { Primeros Pasos con AJAX } (09:51:05) :

[...] Nico dejó en los comentarios el enlace a otro tutorial muy bueno también que brilla por su simplicidad, una especie de_“hola mundo”_ en AJAX y en 30 segundos ;) (en inglés).   [...]

15 10 2006
Good AJAX Tutorials at A.JAX (03:05:49) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

24 10 2006
H.G.M. Blog » Blog Archive » Helpful tutorials to learn Ajax. (17:07:09) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

21 12 2006
Bmcasting » 30 Saniyede Ajax Öğrenin (22:56:25) :

[...] Bu makaleyi yazarken özellikle Rasmus’ 30 second AJAX Tutorial baÅŸlıklı yazısından faydalandım. [...]

30 01 2007
ajax-tr.com | Türkçe AJAX Kaynağı (14:53:06) :

[...] Rasmus’ 30 second AJAX Tutorial Nothingrows AJAX XMLHttpRequest Vikipedi Ajax Nasıl? XMLHttpRequest Nedir? Ne iÅŸ yapar? [...]

16 02 2007
Ajax Plugins » Blog Archive » Top 126 Ajax Tutorials (21:58:39) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab [...]

16 03 2007
Affiliate Quanda » Blog Archive » Introducing AJAX (new series) (11:30:56) :

[...] side, but first lets look at the javascript, the code for this short program has been taken from http://blog.coderlab.us/rasmus-30-second-ajax-tutorial/ if anyone doesn’t understand my [...]

9 07 2007
sastgroup.com » Blog Archive » Tutorials su ajax (08:09:34) :

[...] Rasmus 30 second AJAX Tutorial : first program using Ajax at CoderLab    [...]

9 08 2007
Big List Of More AJAX Tutorials (02:10:40) :

[...] Rasmus’ 30 second AJAX Tutorial I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became “AJAX”. And it really isn’t as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. [...]

12 10 2007
Asp-Php-Html-Ajax-JavaScript-Java-Mysql-Oracle » 30 Saniyede AJAX (09:41:25) :

[...] Rasmus’ 30 second AJAX Tutorial Nothingrows AJAX 30 Saniyede AJAX Öğrenin XMLHttpRequest Vikipedi Ajax Nasıl? XMLHttpRequest Nedir? Ne iÅŸ yapar? [...]

3 01 2008
Gutes AJAX Buch oder Tutorial - html.de Forum - HTML für Anfänger & Fortgeschrittene (05:29:42) :

[...] find das Tutorial sehr cool CoderLab’s Blog » Rasmus’ 30 second AJAX Tutorial __________________ Die [...]

9 06 2008
32 AJAX Tutorials for Beginners (09:43:29) :

[...] 30 Second AJAX Tutorial Introduces you to a quick overview of the AJAX concept. Read the article then see a demonstration of how it works at mGroves.com. [...]

25 06 2008
» XMLHTTPREQUEST nesnesini çağırma yonetim danışmanlığı ekonomi sermet sandıkcı (05:55:06) :

[...] Rasmus’ 30 second AJAX Tutorial Nothingrows AJAX 30 Saniyede AJAX Öğrenin XMLHttpRequest Vikipedi Ajax Nasıl? XMLHttpRequest Nedir? Ne iÅŸ yapar? AJAX-TR.COM » 30 Saniyede AJAX [...]

7 07 2008
15 Sitios AJAX | Diseño y desarrolo de sitios web 2.0 (19:14:30) :

[...] Rasmus 30 second AJAX Tutorial [...]

22 08 2008
Top AJAX Tutorials with Debugging Help | WebHelperMagazine.com (17:07:36) :

[...] Rasmus’ 30 second AJAX Tutorial I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became “AJAX”. And it really isn’t as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. [...]

22 09 2008
CoderLab’s Blog » Using The Post Method In Ajax (08:52:51) :

[...] Rasmus’ 30 second AJAX Tutorial [...]




LiveSTRONG