Skip to content

Instantly share code, notes, and snippets.

@zhiqinx
Last active January 28, 2016 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhiqinx/7cf4c5b59e57ccd3c2ed to your computer and use it in GitHub Desktop.
Save zhiqinx/7cf4c5b59e57ccd3c2ed to your computer and use it in GitHub Desktop.
function loadXMLDoc2()
{
var sellerID = document.getElementById("id").value;
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==1 || xmlhttp.status==200)
{
document.getElementById("statement2").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","index_verify_currentQueue.jsp",true);
xmlhttp.send();
}
function startWork(){
setInterval("loadXMLDoc2()",500);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment