This link has been bookmarked by 84 people . It was first bookmarked on 11 Apr 2006, by yc c.
-
08 Mar 12
Ludovic GascThe XMLHttpRequest specification defines an API that provides scripted client functionality for transferring data between a client and a server.
xmlhttprequest w3c ajax xml web standards javascript reference
-
01 Jan 11
-
25 Nov 10
-
28 Sep 10
-
06 Jul 10
-
10 Jun 10
-
07 Jun 10
-
23 May 10
-
22 Jan 10
-
25 Aug 09
-
12 May 09
-
10 Apr 09
-
17 Mar 09
-
16 Jan 09
-
12 Dec 08
-
01 Dec 08
-
30 Nov 08
-
05 Sep 08
-
04 Jun 08
-
28 Apr 08
-
21 Mar 08
-
18 Feb 08
-
23 Jan 08
-
25 Dec 07
David RobertsXMLHttpRequest Object specification
-
21 Sep 07
Chris JoblingW3C Working Draft last published 27 September 2006, that describes an ongoing attempt to standardise the JavaScript XMLHttpRequest object that is the Ajax "engine".
ajax w3c xmlhttprequest javascript reference standards web web2.0 eg-259 articles
-
07 Jun 07
-
23 May 07
-
15 May 07
-
16 Apr 07
-
Some simple code to do something with data from an XML document fetched over the network:
function test(data) { // taking care of data } function handler() { if(this.readyState == 4 && this.status == 200) { // so far so good if(this.responseXML != null && this.responseXML.getElementById('test').firstChild.data) // success! test(this.responseXML.getElementById('test').firstChild.data); else test(null); } else if (this.readyState == 4 && this.status != 200) { // fetched the wrong page or network error... test(null); } } var client = new XMLHttpRequest(); client.onreadystatechange = handler; client.open("GET", "unicorn.xml"); client.send();If you just want to log a message to the server:
function log(message) { var client = new XMLHttpRequest(); client.open("POST", "/log"); client.setRequestHeader("Content-Type", "text/plain;charset=UTF-8"); client.send(message); }Or if you want to check the status of a document on the server:
function fetchStatus(address) { var client = new XMLHttpRequest(); client.onreadystatechange = function() { // in case of network errors this might not give reliable results if(this.readyState == 4) returnStatus(this.status); } client.open("HEAD", address); client.send(); }
-
-
11 Apr 07
-
02 Jan 07
Alan DeanThis specification defines the XMLHttpRequest object, an API that provides additional HTTP client functionality for transferring data between a client and a server.
-
26 Nov 06
Matti NarkiaThe XMLHttpRequest object is an interface exposed by a scripting engine that allows scripts to perform HTTP client functionality, such as submitting form data or loading data from a server.\nThe name of the object is XMLHttpRequest for compatibility with
Ajax W3C javascript XMLHttpRequest standards reference webstandards Web XML HTTP documentation specification standard browser popular
-
11 Nov 06
-
03 Sep 06
-
14 Aug 06
-
30 May 06
-
28 Apr 06
-
18 Apr 06
-
13 Apr 06
Bernard FarrellW3C draft of a spec for XMLHttpRequest
-
12 Apr 06
-
11 Apr 06
-
Are HallandW3C har lansert eit working draft for kjernekomponenten i Ajax. Dette er tidspunktet å gi tilbakemeldingar på, folkens!
-
10 Apr 06
-
08 Apr 06
-
06 Apr 06
Would you like to comment?
Join Diigo for a free account, or sign in if you are already a member.