Referencias programación Web AJAX
Preliminares:
Referencia JavaScript: http://www.w3schools.com/jsref/.
XML DOM: http://www.w3schools.com/xml/xml_dom.asp
XML DOM: http://www.w3schools.com/dom/
HTML DOM: http://www.w3schools.com/htmldom/
Historia. Artículo original:
http://www.adaptivepath.com/ideas/ajax-new-approach-web-applications
Al lío:
Objeto XMLHTTPRequest:
Dependiente del navegador, por lo que al instanciarlo hay que curarse en salud:
try { // Firefox, Safiri, Opera oXHR= new XMLHttpRequest(); } catch(e) { // IE try { oXHR= new ActiveXObject('Msxml2.XMLHTTP'); } catch(e) { oXHR= new ActiveXObject('Microsoft.XMLHTTP'); } }
to be continued …
reading:
http://www.json.org/
http://es.php.net/manual/en/book.json.php