Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

What is ajax, introduction to ajax?


Asked by Lilian Brennan on Nov 28, 2021 AJAX



What is Ajax, Introduction to Ajax. A jax is not a programming language, its the script. Ajax means, Asynchronous java script and xml, and this is the type of programming made popular in 2005 by Google suggest [Google search, while we are typing some thing in Google search box it will show you some suggestions automatically right that is Ajax] With Ajax we can move the data from our web page to the server, and we can update the part of our web page with out refreshing the entire page, cool ...
Furthermore,
Ajax is about using this ability of JavaScript to send asynchronous http request and get the xml data as a response (also in other formats) and update the part of a web page (using JavaScript) without reloading or refreshing entire web page. The following figure illustrates the Ajax functionality.
Next, AJAX is a developer's dream, because you can: 1 Update a web page without reloading the page 2 Request data from a server - after the page has loaded 3 Receive data from a server - after the page has loaded 4 Send data to a server - in the background
Also Know,
Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions. In our PHP tutorial, we will demonstrate how AJAX can update parts of a web page, without reloading the whole page.
Just so,
AJAX was made popular in 2005 by Google, with Google Suggest. Google Suggest is using AJAX to create a very dynamic web interface: When you start typing in Google's search box, a JavaScript sends the letters off to a server and the server returns a list of suggestions.