Met Html Focus
# HTML DOM focus() Method\\
\\
[ Element Object](#)\\
\\
## Example\\
\\
is Element Set Focus:\\
\\
document.getElementById("myAnchor").focus();\\
\\
[Try itΒ»](#)\\
\\
* * *\\
\\
## Definition and Use\\
\\
focus() MethodUsed forisElement Set FocusοΌif it can be setοΌγ\\
\\
**TipοΌ**Use [blur()](#) MethodTo remove focus from an element.\\
\\
* * *\\
\\
## Browser Support\\
\\
| Method | | | | | |\\
| --- | --- | --- | --- | --- | --- |\\
| focus() | Yes | Yes | Yes | Yes | Yes |\\
\\
* * *\\
\\
## Syntax\\
\\
_HTMLElementObject_.focus()\\
\\
## Parameter\\
\\
None\\
\\
## Technical Description\\
\\
| Return Value: | No return value |\\
| --- |\\
\\
* * *\\
\\
\\
## More Examples\\
\\
## Example\\
\\
Set focus on a text field:\\
\\
document.getElementById("myText").focus();\\
\\
[Try it Β»](#)\\
\\
## Example\\
\\
After the document is loaded, set focus on a text field:\\
\\
window.onload = function() {\\
\\
document.getElementById("myText").focus();\\
\\
};\\
\\
[Try it Β»](#)\\
\\
* * *\\
\\
## Related pages\\
\\
HTML DOM Reference Manual: (#)\\
\\
* * Element Object](#)\\
\\
YouTip