Skip to content

Instantly share code, notes, and snippets.

@apphp-snippets
Created August 11, 2013 09:56
Show Gist options
  • Save apphp-snippets/6204249 to your computer and use it in GitHub Desktop.
Save apphp-snippets/6204249 to your computer and use it in GitHub Desktop.
<!-- source: http://www.apphp.com/index.php?snippet=javascript-focus-on-load -->
<!-- This part goes into your body tag -->
<body OnLoad="document.myform.user.focus();">
<!-- You you just use the name of the form and field name within your form -->
<form name="myform">
Name: <input type="text" name="user" size="10">
Email: <input type="text" name="email" size="10">
</form>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment