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



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer