Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
46trick_js_focus.html
46trick_js_focus.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>JS focus field</title> </head> <body> First field is in the focus after page load. <br><br> <form action="" method="POST" enctype="multipart/form-data"> Your name: <input type="Text" name="ime"> <br>email: <input type="Text" name="emajl"> <br><input type="Submit" value="Potvrdi"> </form> <script><!-- document.forms[0].ime.focus(); --></script> </body> </html>
Reload page
Preview
W3C validation
Edit Code