Does anyone know, what an XMLHttpRequest enables a web page to do, which cannot be done using a normal HttpRequest?
Does anyone know, what an XMLHttpRequest enables a web page to do, which cannot
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
XMLHttpRequestis a standard javascript object that allows you to make HTTP Requests from the browser in javascript.HttpRequestis a server side object that represents a request to the server.In summary – one works in the browser, the other in the web server. They also have completely different roles.
XMLHttpRequestis for fetching web resources within the browser.HttpRequestrepresents an incoming request.