DIR : /home/kozerus/public_html/gethint.html
/home/kozerus/public_html
<html>
<head>
<title>gethint.html 20190127_1740 preview html_ajax_php</title>
<script id="script_gethint_ajax">
function showHint(str) {
if (str.length == 0) {
document.getElementById("txtHint").innerHTML = "";
return;
}
else {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("txtHint").innerHTML = this.responseText;
}
};
xmlhttp.open("POST", "/idx.php?hint=" + str, true);
xmlhttp.send();
}
}
</script>
<style id="style_body" >
body { bgcolor="darkslategrey" }
</style>
</head>
<body>
<p><b>type name in input field below:</b></p>
<form id="form_gethint_ajax">
fname: <input type="text" onkeyup="showHint(this.value)">
</form>
<p>Suggestions: <span id="txtHint"></span></p>
</body>
</html>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer