Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Example of XML HttpRequest.
Home
XML
Example of XML HttpRequest.
0
votes
asked
Sep 19, 2020
in
XML
by
SakshiSharma
Example of HttpRequest in XML
#xml-httprequest-example
#xml-http-request
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 19, 2020
by
Robindeniel
var xhttp= newXML Httprequest();
1)Example one
Xhttp.onreadystatechange=function();
{ If this.readystate==4&& this.status==200)
{ Action to be performed when document is ready;
Document.getelementbyID(“Demo”)
Innerhtml=xhttp.responseText;}};
...