|
Answer» There are a few limitations that AJAX users should keep in mind. These are: - Response time: It is a concern for the AJAX developers related to the network latency. Developers NEED to carefully consider the time GAP between the user request and server response.
- JavaScript Dependencies: AJAX heavily relies on JS. Often, the implementation goes DIFFERENT from browser to browser or when the browser's version changes. That is why developers need to check the AJAX-based applications on various browsers.
- Integration with Browser: Dynamic websites do not manifest themselves with the browser history engine. That is why clicking the BACK button in the web browser might not land users on the desired page or give the desired result.
|