Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 642 Bytes

README.MD

File metadata and controls

25 lines (12 loc) · 642 Bytes

JavaScript AJAX

What is AJAX?

Ans: AJAX means Asynchronous JavaScript And XML. AJAX use for Read data from a web server - after the page has loaded. Update a web page without reloading the page. Send data to a web server - in the background.

AJAX just uses a combination of, A browser built-in XMLHttpRequest object (to request data from a web server). JavaScript and HTML DOM (to display or use the data). AJAX is not a programming language.

How AJAX Works?

AJAX Topics

  1. AJAX Introduction

  2. AJAX XMLHttpRequest

  3. AJAX Request

  4. AJAX Response

  5. AJAX Example