What are limitations of Ajax?

devquora
devquora

Posted On: Feb 22, 2018

 

1) Browser Integration

The dynamically created page does not register itself with the browser history engine, so triggering the “Back” function of the users’ browser might not bring the desired result.

2) Response-time Concerns

Network latency – or the interval between the user request and server response – need to be considered carefully during Ajax development.

3) Search Engine Optimization (SEO)

Websites that use Ajax to load data which should be indexed by search engines must be careful to provide equivalent Sitemaps data at a public, linked URL that the search engine can read, as search engines do not generally execute the JavaScript code required for Ajax functionality.

4) Reliance on JavaScript

Ajax relies on JavaScript, which is often implemented differently by different browsers or versions of a particular browser. Because of this, sites that use JavaScript may need to be tested in multiple browsers to check for compatibility issues.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Ajax Interview Questions

    Explain What is Ajax?

    Ajax is considered to be a developer’s best friend because it offers several benefits to him such as updating the web..

    Ajax Interview Questions

    Differentiate between Synchronous and Asynchronous Ajax requests.

    Synchronous Ajax requests: In this, the script stops and waits for the server to reply before continuing. In web application world, one has to happen after the other, i.e. the interaction between the ..

    Ajax Interview Questions

    List some advantages and disadvantages of using Ajax.

    Ajax is a very easy concept if one has a sound knowledge of JavaScript. It uses JavaScript functions to call methods fro..