You are on page 1of 1

<script>

function ABC()
{
var xhttp=new XMLHttpRequest();
xhttp.onreadystatechange=function()
{
if(this.readyState==4 && this.status == 200)
{
}
};
xhttp.open("GET","demo.txt",true);
xhttp.send();
}
</script>

You might also like