AJAX is a development technique that uses JavaScript to asynchronously exchange small amounts of data with a web server in the background without reloading the entire web page. This makes web applications faster, more interactive, and user-friendly by allowing changes without having to reload the entire page. AJAX uses the XMLHttpRequest object to send and receive data from the server in any format including XML and plain text. It is a browser technology that runs independently of web servers to improve responsiveness of internet applications.
Download as DOC, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
31 views
Ajax Asynchronous Javascript and XML
AJAX is a development technique that uses JavaScript to asynchronously exchange small amounts of data with a web server in the background without reloading the entire web page. This makes web applications faster, more interactive, and user-friendly by allowing changes without having to reload the entire page. AJAX uses the XMLHttpRequest object to send and receive data from the server in any format including XML and plain text. It is a browser technology that runs independently of web servers to improve responsiveness of internet applications.
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 1
Page 1 Of 1
AJAX = Asynchronous JavaScript And XML
AJAX is not a programming language. but simply a development technique for creating interactive web applications. The technology uses JavaScript to send and receive data between a web browser and a web server. The AJAX technique makes web pages more responsive by exchanging data with a server behind the scenes, instead of reloading an entire web page each time a user makes a change. With AJAX, web applications can be faster, more interactive, and more user friendly. AJAX uses an XMLHTTPRequest object to send data to a web server, and XML is commonly used as the format for receiving server data, although any format including and plain text can be used.
AJAX Is A Browser Technology
AJAX is a technology that runs in your browser. It uses asynchronous data transfer between the browser and the web server, allowing web pages to request small bits of information from the server instead of whole pages. The technology makes Internet applications smaller, faster and more user friendly. AJAX is a web browser technology independent of web server software.