Creating AJAX functionality needs JavaScript?

Asked By 10 points N/A Posted on -
qa-featured

What are the factors that I need to consider when creating my own AJAX functionality and do I really need to learn JavaScript?

SHARE
Answered By 45 points N/A #115326

Creating AJAX functionality needs JavaScript?

qa-featured

Hello Karla.

AJAX is an acronym for Asynchronous JavaScript and XML. It is a group of technologies for accessing the server from the background (i. e., asynchronously) so that it does not interfere with page loading. With AJAX, it is possible to load certain parts of a web page resulting to significant performance improvements. The technologies that a web developer must know prior to learning AJAX are HTML / XHTML, CSS, and JavaScript / DOM. Since JavaScript is an integral part of AJAX, you really have to learn it first before you can do AJAX.

Here is a good place to get you started on learning all about AJAX: https://www.w3schools.com/js/js_ajax_intro.asp

Hope this helps!

Related Questions