Explain limitations of ajax.



Explain limitations of ajax...

Answer / Mahendra Nath Mishra

Although AJAX provides many benefits, it also has some limitations:n
1. Cross-domain restrictions: Due to security reasons, browsers impose same-origin policy (SOP) that limits AJAX requests to the same domain as the web page being loaded.
2. Cookie support is limited: AJAX does not have access to cookies sent with the initial request, making it difficult to maintain session state across multiple requests.
3. Search Engine Indexing: Since AJAX content isn't directly visible to search engines, it can negatively impact SEO.
4. Network instability: Depending on network speed and stability, errors may occur during AJAX requests that could affect the user experience.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More AJAX Interview Questions

Can you list some examples of ajax-based applications?

1 Answers  


Is ajax built into javascript?

1 Answers  


What is the difference between json and ajax?

1 Answers  


What is json? : asp.net ajax

1 Answers  


What is AJAX Framework?

1 Answers  


What are the limitations of Ajax?

2 Answers  


Why do we use the updateprogress control in ajax? : asp.net ajax

1 Answers  


What are the components of the asp.net ajax architecture? : asp.net ajax

1 Answers  


What is ajaxcontrol toolkit?

1 Answers  


What are the difference between AJAX and Javascript?

1 Answers  


How can we assign an object in Java Script?? For Example:- ----------- If i create an object "obj1" var obj1 = Object(); obj1.name = "hari"; and if i want to assign it to two objects "obj2" and "obj3" with different names... obj1.name = "gopi" obj2 = new Object(obj1); obj1.name = "raghu" obj3 = new Object(obj1) Now ob2.name become to "raghu" from "gopi". WHY? how to solve the above problem?

2 Answers  


How do we abort the current xmlhttprequest in ajax?

1 Answers  


Categories