+1 vote
in JavaScript by
How To Set The Focus In An Element Using Javascript?

1 Answer

0 votes
by

<script> function setFocus() { if(focusElement != null) {

document.forms[0].elements["myelementname"].focus(); } } </script>

...