Skip to content

Instantly share code, notes, and snippets.

@josuebasurto
Created October 22, 2013 21:41
Show Gist options
  • Select an option

  • Save josuebasurto/e36cd8646605147d7f09 to your computer and use it in GitHub Desktop.

Select an option

Save josuebasurto/e36cd8646605147d7f09 to your computer and use it in GitHub Desktop.
Set focused a textbox
<html>
<body>
<form>
<input type="text" id="TextBoxClientID"></input>
</form>
<script language='javascript'>
document.getElementById('TextBoxClientID').focus();
document.getElementById('TextBoxClientID').select();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment