The whole point of AJAX is that you can update small portions of a web page without getting the entire page from the server. This is achieved through asynchronous HTTP calls to the server and dynamic updates of the HTML DOM. The asynchronicity allows this to happen without the user being blocked from using the web page. It cuts down on traffic because typically less data is moved around during an AJAX call since you are not updating the entire page, just a portion of it.