+ 13
Hello guys, can anyone explain about AJAX?
2 Answers
+ 10
Ajax short for asynchronous JavaScript and XML is a set of Web development techniques using many Web technologies on the client side to create asynchronous Web applications.
@wikipedia
+ 3
AJAX technology allows you to build interactive web apps. With ajax you can retrieve data from server without page refresh. Minimally it brings reach UX to your site/application.
Internally it uses XMLHttpRequest object, you can read more about XHR on mdn(https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest).