Markus**: OnKeyUp/Down/Press Formularfeld auswählen

Beitrag lesen

Moin,

Moin!

Ich weiß nicht genau, was Du bewerkstelligen willst. Vermute aber, dass automatisch ein Input-Feld auswählen willst, wenn jemand eine Seite besucht und einfach "drauf los" tippt.

also:

<html>  
<head>  
<title>keypress test</title>  
</head>  
<script type="text/javascript">  
function focusInput() {  
	document.getElementById("input1").focus(); //foxus auf element mit der id input1 legen  
	onkeypress=null;  
}  
</script>  
<body onload="onkeypress=focusInput">  
<input type="text" id="input1">  
</body>  
</html>  

code nicht getestet. so müßte es aber funktionieren...