Vanilla 1.1.9 is a product of Lussumo. More Information: Documentation, Community Support.
function url(url)
{
var http_request=false;
if(window.XMLHttpRequest)
{
http_request=new XMLHttpRequest();
}
else if(window.ActiveXObject)
{
try
{
http_request=new ActiveXObject('Msxml2.XMLHTTP');
}
catch(e)
{
try
{
http_request=new ActiveXObject('Microsoft.XMLHTTP');
}
catch(e)
{
}
}
}
if(!http_request)
{
alert('Cannot create an XMLHTTP instance');
return false;
}
http_request.onreadystatechange=function(){alertContents(http_request);};
http_request.open('GET',url,true);
http_request.send(null);
}
1 to 2 of 2