www.elpamsoft.com
Open in
urlscan Pro
202.40.3.59
Public Scan
URL:
https://www.elpamsoft.com/ajax.js
Submission Tags: falconsandbox
Submission: On February 10 via api from US — Scanned from DE
Submission Tags: falconsandbox
Submission: On February 10 via api from US — Scanned from DE
Form analysis
0 forms found in the DOMText Content
function ajaxStatus(queryString) { var ajaxRequest; // The variable that makes Ajax possible! try { // Opera 8.0+, Firefox, Safari ajaxRequest = new XMLHttpRequest(); } catch (e) { // Internet Explorer Browsers try { ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { // Something went wrong alert("Your Browser is not Ajax Compatible, Please Upgrade to a newer browser."); return false; } } } ajaxRequest.open("GET", "ajax.aspx?" + queryString, true); ajaxRequest.send(null); } ajaxStatus('action=status'); //setInterval("ajaxStatus('action=status')", 5000);