Skip to main content

AJAX:Getting Started - MDC

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Bookmark History

Saved by 94 people (38 private), first by anonymouse user on 2006-03-02


Public Comment

on 2006-07-24 by postart

This article guides you through the AJAX basics and gives you two simple hands-on examples to get you started.

on 2006-08-02 by jamiedinkelacker

Mozilla

on 2006-08-17 by kgl0903

ajax基礎教學

Public Sticky notes

AJAX:Getting Started

Highlighted by bbhglobal

Ajax stands for Asynchronous JavaScript and XML. In a nutshell, it is the use of the nonstandard XMLHttpRequest() object to communicate with server-side scripts. It can send as well as receive information in a variety of formats, including XML, HTML, and even text files. Ajax’s most appealing characteristic, however, is its “asynchronous” nature, which means it can do all of this without having to refresh the page.

Highlighted by mangino

This article guides you through the AJAX basics and gives you two simple hands-on examples to get you started.

Highlighted by ishtadasah

var httpRequest; if (window.XMLHttpRequest) { // Mozilla, Safari, ... httpRequest = new XMLHttpRequest(); } else if (window.ActiveXObject) { // IE httpRequest = new ActiveXObject("Microsoft.XMLHTTP"); }

Highlighted by lmahan

httpRequest.onreadystatechange = nameOfTheFunction;

Note that there are no brackets after the function name and no parameters passed, because you're simply assigning a reference to the function

Highlighted by lmahan