AJAX allows web developers to retrieve data from other servers or databases asynchronous. This has the advantage that the web page doesn't need to be reloaded and only the necessary information must be retrieved from the server.
Benefits:
- No page reload: product listings or other content can be changed dynamically without page reload
- Faster: there is no page reload, only the minimum data must be retrieved from the server back to the client
- User friendly: content can be changed/adapted dynamically, therefore the surfing experience is closer to desktop applications such as Word or Photoshop

Write a comment