Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var message=document.getElementById('message').value;
message = encodeURIComponent(message);
document.getElementById('message').value = "";
document.getElementById('message').focus();
var url="bottom_execute.pl";
var params = "Message="+message+"&Random="+Math.random();
[blue]xhr.open("POST",url,true);
xhr.setRequestHeader("Content-type", "application/x-[URL unfurl="true"]www-form-urlencoded");[/URL]
xhr.setRequestHeader("Content-length", params.length);
xhr.setRequestHeader("Connection", "close");[/blue]
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
document.getElementById("DisplayA").innerHTML=xhr.responseText;
}
}
xhr.send(params);