Files
Scanning the repository...
Last update 5 years 5 months
by Afonso Muralha
FilesCODEFirmwaredatajs | |
---|---|
.. | |
bootstrap.min.js | |
jquery-1.12.4.min.js | |
sendData.js |
sendData.jsvar stringFrom = document.getElementById("displaytext"); var sendButton = document.getElementById("sendbtn"); sendButton.addEventListener(onclick, button_handler); function button_handler(){ stringFrom.value = ""; sendString(); } function sendString(value) { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { //document.getElementById("LEDState").innerHTML = //this.responseText; } }; xhttp.open("GET", "StringState?StringTxt="+stringFrom.value , true); xhttp.send(); }