Files
esp8266_deauther/htmlfiles/functions.js
Stefan Kremser 8e310c68e4 Add files via upload
added the HTML files from the webinterface.
To convert it into bytecode use minifier.html.
2017-02-08 09:10:58 +01:00

13 lines
471 B
JavaScript

function getResponse(adr, callback, timeoutCallback = function(){alert("timeout error. Please reload the site");}, timeout = 3000){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 4){
if(xmlhttp.status == 200) callback(xmlhttp.responseText);
else timeoutCallback();
}
};
xmlhttp.open("GET", adr, true);
xmlhttp.send();
xmlhttp.timeout = timeout;
xmlhttp.ontimeout = timeoutCallback;
}