Searched defs:xmlhttp (Results 1 - 2 of 2) sorted by relevance

/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/js/
H A DAjaxUtils.js413 this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
418 this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
421 this.xmlhttp = null;
424 if(!this.xmlhttp && typeof XMLHttpRequest != "undefined")
425 this.xmlhttp = new XMLHttpRequest();
426 if (!this.xmlhttp)
479 if (this.xmlhttp) {
483 this.xmlhttp.open(this.method, totalurlstring, true);
485 this.xmlhttp.open(this.method, this.requestFile, true);
489 this.xmlhttp
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/js/
H A DAjaxUtils.js413 this.xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
418 this.xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
421 this.xmlhttp = null;
424 if(!this.xmlhttp && typeof XMLHttpRequest != "undefined")
425 this.xmlhttp = new XMLHttpRequest();
426 if (!this.xmlhttp)
479 if (this.xmlhttp) {
483 this.xmlhttp.open(this.method, totalurlstring, true);
485 this.xmlhttp.open(this.method, this.requestFile, true);
489 this.xmlhttp
[all...]

Completed in 21 milliseconds