SetFocus

Aus Programmers Guide

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
Roy (Diskussion | Beiträge)
(Die Seite wurde neu angelegt: „== Set Focus on a TextField with JavaScript == <source lang="javascript"> <script type="text/javascript"> function focusFeld(id){ if(document.getElementById(id…“)

Aktuelle Version vom 16:25, 6. Jul. 2010

Set Focus on a TextField with JavaScript

<script type="text/javascript">
function focusFeld(id){
	if(document.getElementById(id)){
		var t2 = document.getElementById(id);
		t2.focus(); 
		t2.value = t2.value; 
	}
}
 
</script>
Persönliche Werkzeuge