AJAX XMLHttpRequest

Getting to know XMLHttpRequest

Properties of XMLHttpRequest XMLHttpRequest Methods of XMLHttpRequest

An object of XMLHttpRequest is used for communication between the client and the server that happens at different times.

The following things are done with it:

Sends information from the client behind the scenes

takes the information from the server

The page is updated without having to be reloaded.

XMLHttpRequest object\’s properties

The following are the common properties of the XMLHttpRequest object:

The property and what it is

onReadyStateChange

When the readystate attribute changes, it\’s called. It cannot be used with requests that happen at the same time.

readyState

shows where the request is in its process. From 0 to 4, it goes.

0 UNOPENED open() is not run.

1 OPENED: open is called, but not send().

2: send() is called, and HEADERS RECEIVED is returned. Headers and status are now available.

3 LOADING Downloading data; the data are in responseText.

4 DONE The job is done completely.

reponseText

returns response as text.

responseXML

returns response as XML

 

XMLHttpRequest object methods

These are the most important methods of the XMLHttpRequest object:

Method and Explanation

void open (method, URL)

opens the request by giving the URL and either the get or post method.

void open (method, URL, async)

same as above, but specifies whether or not it is asynchronous.

void open (method, URL, async, username, password)

same as above, but the username and password are given.

void send ()

sends get request.

void send (string)

send post request.

setRequestHeader(header,value)

it adds headers to a request.

Related Posts
50+ PHP Interview Questions and Answers 2023

1. Differentiate between static and dynamic websites. Static Website The content cannot be modified after the script is executed The Read more

All We Need to Know About PHP Ecommerce Development

  Many e-commerce sites let you search for products, show them off, and sell them online. The flood of money Read more

PHP Custom Web Development: How It Can Be Used, What Its Pros and Cons Are,

PHP is a scripting language that runs on the server. It uses server resources to process outputs. It is a Read more

PHP Tutorial

Hypertext Preprocessor (PHP) is a programming language that lets web developers make dynamic content that works with databases. PHP is Read more

Introduction of PHP

PHP started out as a small open source project that grew as more and more people found out how useful Read more

Syntax Overview of PHP

This chapter will show you some of PHP\'s very basic syntax, which is very important for building a strong PHP Read more

Environment Setup in PHP

To develop and run PHP on your computer, you need to instal three important parts. Web server PHP can almost Read more

Variable Types in PHP

Using a variable is the main way to store information in the middle of a PHP program. Here are the Read more

Scroll to Top