Syntax
document.form.button.focus()
The focus() method applies focus to the button without invoking the button's onFocus event handler.
<html> <script language="JavaScript"> <!-- function moveFocus() { document.myForm.button1.focus(); } --> </script> <form name="myForm"> <input type="button" value="I hold my focus after a click" name="button1"><br> <input type="button" value="I shift my focus when click" name="button2" onClick="moveFocus()"> </form> </html>
10.6.Button | ||||
10.6.1. | Button | |||
10.6.2. | Button.blur() | |||
10.6.3. | Button.click() | |||
10.6.4. | Button.focus() | |||
10.6.5. | Button.form | |||
10.6.6. | Button.name | |||
10.6.7. | Button.onBlur | |||
10.6.8. | Button.onClick | |||
10.6.9. | Button.onFocus | |||
10.6.10. | Button.onMouseDown | |||
10.6.11. | Button.onMouseUp | |||
10.6.12. | Button.type | |||
10.6.13. | Button.value | |||
10.6.14. | Retrieving Text in form button action | |||
10.6.15. | Button onclick action event |