Ajax – Asynchronous JavaScript And XML
What does it include? HTML, JavaScript, XML, jQuery?
What is the best way to start learning Ajax? Should I start from the basics of HTML and JavaScript or base my instruction on a particular language or library?
Ajax is, in short, the process of communicating with a webserver from a page, using JavaScript, without leaving the page.
The key things you need to know for this are:
The server side of this depends very much on what server side environment you are working with, so there is little useful that is specific that could be said. What can be usually said are what form the responses can take.
innerHTML.As for the client side, there are three common approaches:
I mentioned the Same Origin Policy above. Normally a script isn’t allowed to read data from another domain for security reasons. The CORS standard allows you to work around this.
Now for some resources: